Skip to content

Commit 351839a

Browse files
Bump minimum CMake version to 3.10
1 parent 4a9ceca commit 351839a

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

NativeApp/Android/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
cmake_minimum_required (VERSION 3.6)
1+
cmake_minimum_required (VERSION 3.10)
22

33
add_library(native_app_glue ${ANDROID_NDK}/sources/android/native_app_glue/android_native_app_glue.c)
44
target_link_libraries(native_app_glue log)

NativeApp/Android/ndk_helper/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
cmake_minimum_required (VERSION 3.6)
1+
cmake_minimum_required (VERSION 3.10)
22

33
project(NDKHelper CXX)
44

NativeApp/Linux/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
cmake_minimum_required (VERSION 3.6)
1+
cmake_minimum_required (VERSION 3.10)
22

33
project(XCBKeySyms C)
44

Tests/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
cmake_minimum_required (VERSION 3.6)
1+
cmake_minimum_required (VERSION 3.10)
22

33
if(TARGET gtest)
44
if(DILIGENT_BUILD_TOOLS_TESTS)

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ before_build:
3232
- cd c:\projects\DiligentTools\BuildTools\FormatValidation
3333
- validate_format_win.bat
3434
- cd c:\projects
35-
- echo cmake_minimum_required(VERSION 3.6) > CMakeLists.txt
35+
- echo cmake_minimum_required(VERSION 3.10) > CMakeLists.txt
3636
- echo Project(DiligentTools_Test) >> CMakeLists.txt
3737
- echo add_subdirectory(DiligentCore) >> CMakeLists.txt
3838
- echo add_subdirectory(DiligentTools) >> CMakeLists.txt

0 commit comments

Comments
 (0)