Files
CPM.cmake/examples/json/CMakeLists.txt

15 lines
364 B
CMake
Raw Normal View History

2019-05-19 19:03:56 +02:00
cmake_minimum_required(VERSION 3.14 FATAL_ERROR)
project(CPMJSONExample)
2019-05-19 19:03:56 +02:00
# ---- Dependencies ----
include(../../cmake/CPM.cmake)
CPMAddPackage("gh:nlohmann/json@3.10.5")
2019-05-19 19:03:56 +02:00
# ---- Executable ----
add_executable(CPMJSONExample main.cpp)
target_compile_features(CPMJSONExample PRIVATE cxx_std_17)
target_link_libraries(CPMJSONExample nlohmann_json::nlohmann_json)