aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CMakeLists.txt2
-rw-r--r--contrib/glfw/CMakeLists.txt2
-rw-r--r--dxcommon/CMakeLists.txt2
-rw-r--r--dxwindow/CMakeLists.txt2
-rw-r--r--hello/CMakeLists.txt2
5 files changed, 5 insertions, 5 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 53799c0..c916974 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -1,4 +1,4 @@
1cmake_minimum_required(VERSION 3.0) 1cmake_minimum_required(VERSION 3.20)
2 2
3project(dx12) 3project(dx12)
4 4
diff --git a/contrib/glfw/CMakeLists.txt b/contrib/glfw/CMakeLists.txt
index a4e4955..3521151 100644
--- a/contrib/glfw/CMakeLists.txt
+++ b/contrib/glfw/CMakeLists.txt
@@ -1,4 +1,4 @@
1cmake_minimum_required(VERSION 3.0) 1cmake_minimum_required(VERSION 3.20)
2 2
3add_library(glfw INTERFACE) 3add_library(glfw INTERFACE)
4 4
diff --git a/dxcommon/CMakeLists.txt b/dxcommon/CMakeLists.txt
index ad8e2b6..08fa178 100644
--- a/dxcommon/CMakeLists.txt
+++ b/dxcommon/CMakeLists.txt
@@ -1,4 +1,4 @@
1cmake_minimum_required(VERSION 3.0) 1cmake_minimum_required(VERSION 3.20)
2 2
3add_library(dxcommon 3add_library(dxcommon
4 src/dxcommon.cc) 4 src/dxcommon.cc)
diff --git a/dxwindow/CMakeLists.txt b/dxwindow/CMakeLists.txt
index c29e098..baf99de 100644
--- a/dxwindow/CMakeLists.txt
+++ b/dxwindow/CMakeLists.txt
@@ -1,4 +1,4 @@
1cmake_minimum_required(VERSION 3.0) 1cmake_minimum_required(VERSION 3.20)
2 2
3add_library(dxwindow 3add_library(dxwindow
4 src/dxwindow.cc) 4 src/dxwindow.cc)
diff --git a/hello/CMakeLists.txt b/hello/CMakeLists.txt
index 9ace20f..90a0d78 100644
--- a/hello/CMakeLists.txt
+++ b/hello/CMakeLists.txt
@@ -1,4 +1,4 @@
1cmake_minimum_required(VERSION 3.0) 1cmake_minimum_required(VERSION 3.20)
2 2
3add_executable(hello main.cc) 3add_executable(hello main.cc)
4 4