aboutsummaryrefslogtreecommitdiff
path: root/CMake
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2015-08-26 18:48:50 -0400
committerDrew DeVault <sir@cmpwn.com>2015-08-26 18:48:50 -0400
commiteb53f173c5cc3739149b3fafc50ab55d5503a649 (patch)
tree49eae9ae84adbe27d639005515111b324a328fad /CMake
parent357af228d693e64b4ac62ef472b3df65fd25348c (diff)
parent6bbfd65735ba17ee55ee90b7021c70d68f27b55a (diff)
downloadsway-eb53f173c5cc3739149b3fafc50ab55d5503a649.tar.xz
Merge pull request #137 from minus7/json
added json-c lib and implemented IPC get_version
Diffstat (limited to 'CMake')
-rw-r--r--CMake/FindJsonC.cmake17
1 files changed, 17 insertions, 0 deletions
diff --git a/CMake/FindJsonC.cmake b/CMake/FindJsonC.cmake
new file mode 100644
index 00000000..2ca0df39
--- /dev/null
+++ b/CMake/FindJsonC.cmake
@@ -0,0 +1,17 @@
+# - Find json-c
+# Find the json-c libraries
+#
+# This module defines the following variables:
+# JSONC_FOUND - True if JSONC is found
+# JSONC_LIBRARIES - JSONC libraries
+# JSONC_INCLUDE_DIRS - JSONC include directories
+#
+
+find_package(PkgConfig)
+pkg_check_modules(PC_JSONC QUIET JSONC)
+find_path(JSONC_INCLUDE_DIRS NAMES json-c/json.h HINTS ${PC_JSONC_INCLUDE_DIRS})
+find_library(JSONC_LIBRARIES NAMES json-c HINTS ${PC_JSONC_LIBRARY_DIRS})
+
+include(FindPackageHandleStandardArgs)
+find_package_handle_standard_args(JSONC DEFAULT_MSG JSONC_LIBRARIES JSONC_INCLUDE_DIRS)
+mark_as_advanced(JSONC_LIBRARIES JSONC_INCLUDE_DIRS)