aboutsummaryrefslogtreecommitdiffstats
path: root/src/cmake/FindJSONCPP.cmake
diff options
context:
space:
mode:
authorAndrej Kozemcak <andrej.kozemcak@pantheon.tech>2019-02-21 16:23:03 +0100
committerHongjun Ni <hongjun.ni@intel.com>2019-03-07 00:55:12 +0000
commit1b1eb0d115f5f3c047dc78862c17d39fb29beba5 (patch)
tree9fccaebab80def6f257f2dc6299fa265b858adaa /src/cmake/FindJSONCPP.cmake
parent3430b042873f2eac94acd323125eaaa4a5f7f3e9 (diff)
Init gNMI server.
Change-Id: Ie898b5385096e735bf947775e0278c3c8f4797a8 Signed-off-by: Andrej Kozemcak <andrej.kozemcak@pantheon.tech>
Diffstat (limited to 'src/cmake/FindJSONCPP.cmake')
-rw-r--r--src/cmake/FindJSONCPP.cmake56
1 files changed, 56 insertions, 0 deletions
diff --git a/src/cmake/FindJSONCPP.cmake b/src/cmake/FindJSONCPP.cmake
new file mode 100644
index 0000000..a342f08
--- /dev/null
+++ b/src/cmake/FindJSONCPP.cmake
@@ -0,0 +1,56 @@
+# - Try to find LibJSONCPP
+# Once done this will define
+#
+# LIBJSONCPP_FOUND - system has LibJSONCPP
+# LIBJSONCPP_INCLUDE_DIRS - the LibJSONCPP include directory
+# LIBJSONCPP_LIBRARIES - Link these to use LIBJSONCPP
+
+
+if (LIBJSONCPP_LIBRARIES AND LIBJSONCPP_INCLUDE_DIRS)
+ # in cache already
+ set(LIBJSONCPP_FOUND TRUE)
+else (LIBJSONCPP_LIBRARIES AND LIBJSONCPP_INCLUDE_DIRS)
+
+ find_path(LIBJSONCPP_INCLUDE_DIR
+ NAMES
+ json/json.h
+ PATHS
+ /usr/include
+ /usr/local/include
+ /usr/include/jsoncpp
+ /opt/local/include
+ ${CMAKE_INCLUDE_PATH}
+ ${CMAKE_INSTALL_PREFIX}/include
+ )
+
+ find_library(LIBJSONCPP_LIBRARY
+ NAMES
+ jsoncpp
+ PATHS
+ /usr/lib
+ /usr/lib64
+ /usr/lib/x86_64-linux-gnu
+ /usr/local/lib
+ /usr/local/lib64
+ /opt/local/lib
+ ${CMAKE_LIBRARY_PATH}
+ ${CMAKE_INSTALL_PREFIX}/lib
+ )
+
+ if (LIBJSONCPP_INCLUDE_DIR AND LIBJSONCPP_LIBRARY)
+ set(LIBJSONCPP_FOUND TRUE)
+ else (LIBJSONCPP_INCLUDE_DIR AND LIBJSONCPP_LIBRARY)
+ set(LIBJSONCPP_FOUND FALSE)
+ endif (LIBJSONCPP_INCLUDE_DIR AND LIBJSONCPP_LIBRARY)
+
+ set(LIBJSONCPP_INCLUDE_DIRS ${LIBJSONCPP_INCLUDE_DIR})
+ set(LIBJSONCPP_LIBRARIES ${LIBJSONCPP_LIBRARY})
+
+ # show the LIBJSONCPP_INCLUDE_DIRS and LIBJSONCPP_LIBRARIES variables only in the advanced view
+ mark_as_advanced(LIBJSONCPP_INCLUDE_DIRS LIBJSONCPP_LIBRARIES)
+
+endif (LIBJSONCPP_LIBRARIES AND LIBJSONCPP_INCLUDE_DIRS)
+
+
+
+