Skip to content

Commit 524b2f0

Browse files
Merge pull request nextgeniuspro#22 from davidwed/master
cmake: Increase of the minimum required cmake version to 3.5 for comp…
2 parents 379f56d + 070789f commit 524b2f0

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
cmake_minimum_required(VERSION 3.10)
1+
cmake_minimum_required(VERSION 3.50)
22

33
# Project name and version
44
project(vfspp VERSION 1.0 LANGUAGES CXX)
@@ -26,4 +26,4 @@ target_compile_features(vfspp INTERFACE cxx_std_17)
2626

2727
if (BUILD_EXAMPLES)
2828
add_subdirectory(examples)
29-
endif()
29+
endif()

examples/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
cmake_minimum_required(VERSION 3.10)
1+
cmake_minimum_required(VERSION 3.50)
22

33
project(vfsppexample)
44

@@ -18,4 +18,4 @@ set(COPY_DESTINATION ${CMAKE_CURRENT_BINARY_DIR}/test-data)
1818
# Add a post-build step to copy the whole directory
1919
add_custom_command(TARGET vfsppexample POST_BUILD
2020
COMMAND ${CMAKE_COMMAND} -E copy_directory ${COPY_SOURCE} ${COPY_DESTINATION}
21-
)
21+
)

0 commit comments

Comments
 (0)