minetest/lib/jsoncpp/CMakeLists.txt
sfan5 e81c48526b Declare all bundled libs as static
Otherwise it can happen that these are built as shared depending on the
options passed to CMake, which obviously isn't intended.
2022-05-14 18:33:42 +02:00

4 lines
72 B
CMake

add_library(jsoncpp STATIC jsoncpp.cpp)
target_link_libraries(jsoncpp)