mirror of
https://github.com/luanti-org/luanti.git
synced 2025-08-01 17:38:41 +00:00
15 lines
237 B
Text
15 lines
237 B
Text
|
if( UNIX )
|
||
|
set(json_SRCS jsoncpp.cpp)
|
||
|
set(json_platform_LIBS "")
|
||
|
else( UNIX )
|
||
|
set(json_SRCS jsoncpp.cpp)
|
||
|
set(json_platform_LIBS "")
|
||
|
endif( UNIX )
|
||
|
|
||
|
add_library(json ${json_SRCS})
|
||
|
|
||
|
target_link_libraries(
|
||
|
json
|
||
|
${json_platform_LIBS}
|
||
|
)
|