2021-01-11 21:42:21 +01:00
|
|
|
cmake_minimum_required(VERSION 3.16)
|
|
|
|
project(nlohmann_json)
|
|
|
|
|
|
|
|
set(CMAKE_CXX_STANDARD 17)
|
|
|
|
|
|
|
|
add_library(nlohmann_json INTERFACE)
|
|
|
|
|
|
|
|
target_include_directories(nlohmann_json INTERFACE include)
|
2024-01-22 23:35:00 +01:00
|
|
|
add_library(nlohmann_json::nlohmann_json ALIAS nlohmann_json)
|