File tree 3 files changed +15
-1
lines changed
3 files changed +15
-1
lines changed Original file line number Diff line number Diff line change @@ -15,6 +15,9 @@ if(BOOST_USE_STATIC)
15
15
set (Boost_USE_STATIC_LIBS ON ) # cmake-lint: disable=C0103
16
16
endif ()
17
17
18
+ if (CMAKE_VERSION VERSION_GREATER_EQUAL "3.30" )
19
+ cmake_policy (SET CMP0167 NEW)
20
+ endif ()
18
21
find_package (Boost CONFIG ${BOOST_VERSION} COMPONENTS ${BOOST_COMPONENTS} )
19
22
if (NOT Boost_FOUND)
20
23
message (STATUS "Boost v${BOOST_VERSION} .x package not found in the system. Falling back to FetchContent." )
@@ -24,6 +27,9 @@ if(NOT Boost_FOUND)
24
27
if (CMAKE_VERSION VERSION_GREATER_EQUAL "3.24.0" )
25
28
cmake_policy (SET CMP0135 NEW)
26
29
endif ()
30
+ if (CMAKE_VERSION VERSION_GREATER_EQUAL "3.31.0" )
31
+ cmake_policy (SET CMP0174 NEW)
32
+ endif ()
27
33
28
34
# more components required for compiling boost targets
29
35
list (APPEND BOOST_COMPONENTS
Original file line number Diff line number Diff line change @@ -8,6 +8,14 @@ if(NOT nlohmann_json_FOUND)
8
8
message (STATUS "nlohmann_json v3.11.x package not found in the system. Falling back to FetchContent." )
9
9
include (FetchContent)
10
10
11
+ # Avoid warning about DOWNLOAD_EXTRACT_TIMESTAMP in CMake 3.24:
12
+ if (CMAKE_VERSION VERSION_GREATER_EQUAL "3.24.0" )
13
+ cmake_policy (SET CMP0135 NEW)
14
+ endif ()
15
+ if (CMAKE_VERSION VERSION_GREATER_EQUAL "3.31.0" )
16
+ cmake_policy (SET CMP0174 NEW)
17
+ endif ()
18
+
11
19
FetchContent_Declare(
12
20
json
13
21
URL https://github.com/nlohmann/json/releases/download/v3.11.3/json.tar.xz
Original file line number Diff line number Diff line change 1
- cmake_minimum_required (VERSION 3.0 )
1
+ cmake_minimum_required (VERSION 3.20 )
2
2
3
3
project (sunshine_tools)
4
4
You can’t perform that action at this time.
0 commit comments