Skip to content

Commit

Permalink
Resolve CMake deprecation warning (#442)
Browse files Browse the repository at this point in the history
  • Loading branch information
fktn-k authored Dec 13, 2024
1 parent 0fdebe8 commit 2b8f925
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.8)
cmake_minimum_required(VERSION 3.8...3.10)

################################
# Project name and version #
Expand Down
2 changes: 1 addition & 1 deletion test/cmake_add_subdirectory_test/project/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.8)
cmake_minimum_required(VERSION 3.8...3.10)

project(CMakeAddSubDirectoryTestProject)

Expand Down
2 changes: 1 addition & 1 deletion test/cmake_fetch_content_test/project/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.11.0)
cmake_minimum_required(VERSION 3.11)

project("CMakeFetchContentTestProject")

Expand Down
2 changes: 1 addition & 1 deletion test/cmake_find_package_test/project/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.8)
cmake_minimum_required(VERSION 3.8...3.10)

project(CMakeFindPackageTestProject)

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.8)
cmake_minimum_required(VERSION 3.8...3.10)

project(CMakeTargetIncludeDirectoriesTestProject)

Expand Down

0 comments on commit 2b8f925

Please sign in to comment.