14 lines
339 B
CMake
14 lines
339 B
CMake
|
add_library(json
|
||
|
dist/jsoncpp.cpp
|
||
|
dist/json/json.h
|
||
|
dist/json/json-forwards.h)
|
||
|
|
||
|
set_target_properties(json
|
||
|
PROPERTIES FOLDER "extern")
|
||
|
|
||
|
set_target_properties(json
|
||
|
PROPERTIES COMPILE_OPTIONS $<$<CXX_COMPILER_ID:MSVC>:/wd4702>)
|
||
|
|
||
|
target_include_directories(json PUBLIC
|
||
|
$<BUILD_INTERFACE:${PROJECT_SOURCE_DIR}/extern/jsoncpp/dist>)
|