mirror of
https://github.com/nlohmann/json.git
synced 2024-11-28 00:59:02 +08:00
fac07e22c5
Starting with CMake 3.27, deprecation warnings are issued when asking for policy settings for CMake 3.4 or earlier. The cmake_minimum_required() command accepts a version range, which allows NEW policy settings up to the upper end of that range to be used, but without raising the minimum CMake version above the bottom of that range. This means NEW policy settings will be used where available, without requiring them. This change updates the project's cmake_minimum_required() calls to use a version range to extend the upper policy version to 3.14 where it wasn't already at that version or higher. This prevents the deprecation warning from CMake 3.27, and gives breathing space before a future CMake release will start issuing similar deprecation warnings again.
13 lines
343 B
CMake
13 lines
343 B
CMake
cmake_minimum_required(VERSION 3.1...3.14)
|
|
|
|
project(DummyImport CXX)
|
|
|
|
find_package(nlohmann_json REQUIRED)
|
|
|
|
add_executable(with_namespace_target main.cpp)
|
|
target_link_libraries(with_namespace_target nlohmann_json::nlohmann_json)
|
|
|
|
add_executable(without_namespace_target main.cpp)
|
|
target_link_libraries(without_namespace_target nlohmann_json)
|
|
|