2019-12-23 18:05:52 +00:00
|
|
|
add_library( nlohmann_json INTERFACE )
|
|
|
|
|
2019-12-23 20:20:52 +00:00
|
|
|
target_include_directories( nlohmann_json INTERFACE ${CMAKE_CURRENT_SOURCE_DIR} )
|
2019-12-23 18:05:52 +00:00
|
|
|
|
2024-05-05 23:26:13 +00:00
|
|
|
target_sources( nlohmann_json INTERFACE
|
2019-12-23 20:20:52 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/nlohmann/json.hpp
|
2024-05-05 23:26:13 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
# Reduces build times
|
|
|
|
target_compile_definitions( nlohmann_json INTERFACE JSON_HAS_FILESYSTEM=0 )
|