aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc Sunet <marc.sunet@amd.com>2025-11-19 09:18:30 -0800
committerMarc Sunet <marc.sunet@amd.com>2025-11-19 09:18:30 -0800
commit5516490fd5bea08d253dcaed59c430c2dada5c2d (patch)
treef5979eb56326bcd654f602c9bcf832846e9dee65
parentb1fbff0da622160a2334a59de7f9090fecb5dad6 (diff)
Update cmake version
-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