summaryrefslogtreecommitdiff
path: root/indra/cmake/JsonCpp.cmake
diff options
context:
space:
mode:
authorRye Mutt <rye@alchemyviewer.org>2024-04-05 19:03:58 -0400
committerGitHub <noreply@github.com>2024-04-06 02:03:58 +0300
commit17e1f3692c5c1e9cbc6ba6895b312a8baae9aec2 (patch)
tree4e9bc0aa51758539dee0f01e53e8909ad71b7b09 /indra/cmake/JsonCpp.cmake
parent7dbdfda7d6fc94eda07dd8376fd47260dfd73964 (diff)
Port from JsonCPP to Boost.Json for json parsing and serializing (#1054)
Diffstat (limited to 'indra/cmake/JsonCpp.cmake')
-rw-r--r--indra/cmake/JsonCpp.cmake17
1 files changed, 0 insertions, 17 deletions
diff --git a/indra/cmake/JsonCpp.cmake b/indra/cmake/JsonCpp.cmake
deleted file mode 100644
index 17f8e47a97..0000000000
--- a/indra/cmake/JsonCpp.cmake
+++ /dev/null
@@ -1,17 +0,0 @@
-# -*- cmake -*-
-
-include(Prebuilt)
-include_guard()
-add_library( ll::jsoncpp INTERFACE IMPORTED )
-
-use_system_binary(jsoncpp)
-
-use_prebuilt_binary(jsoncpp)
-if (WINDOWS)
- target_link_libraries( ll::jsoncpp INTERFACE json_libmd.lib )
-elseif (DARWIN)
- target_link_libraries( ll::jsoncpp INTERFACE libjson_darwin_libmt.a )
-elseif (LINUX)
- target_link_libraries( ll::jsoncpp INTERFACE libjson_linux-gcc-4.1.3_libmt.a )
-endif (WINDOWS)
-target_include_directories( ll::jsoncpp SYSTEM INTERFACE ${LIBS_PREBUILT_DIR}/include)