summaryrefslogtreecommitdiffstats
path: root/cmake/FindJSON_C.cmake
diff options
context:
space:
mode:
authorMatthias Schiffer <mschiffer@universe-factory.net>2015-03-24 17:13:27 +0100
committerMatthias Schiffer <mschiffer@universe-factory.net>2015-03-24 17:13:27 +0100
commit9eac618a73006c9c74f79695d94a4ed305583c39 (patch)
treeabb4f9c747eb951aa6c1e8322914d53db6d145fa /cmake/FindJSON_C.cmake
parent9ef4d441ad91ebcbc68bdae309122f128ed69f56 (diff)
downloadfastd-9eac618a73006c9c74f79695d94a4ed305583c39.tar
fastd-9eac618a73006c9c74f79695d94a4ed305583c39.zip
Make build dependencies more configurable
Diffstat (limited to 'cmake/FindJSON_C.cmake')
-rw-r--r--cmake/FindJSON_C.cmake24
1 files changed, 24 insertions, 0 deletions
diff --git a/cmake/FindJSON_C.cmake b/cmake/FindJSON_C.cmake
new file mode 100644
index 0000000..e31a8b9
--- /dev/null
+++ b/cmake/FindJSON_C.cmake
@@ -0,0 +1,24 @@
+# Defines the following variables:
+# JSON_C_FOUND
+# JSON_C_INCLUDE_DIR
+# JSON_C_LIBRARIES
+# JSON_C_CFLAGS_OTHER
+# JSON_C_LDFLAGS_OTHER
+
+
+if(ANDROID)
+ find_host_package(PkgConfig REQUIRED QUIET)
+else(ANDROID)
+ find_package(PkgConfig REQUIRED QUIET)
+endif(ANDROID)
+
+pkg_check_modules(_JSON_C json-c)
+
+find_path(JSON_C_INCLUDE_DIR NAMES json-c/json.h HINTS ${_JSON_C_INCLUDE_DIRS})
+find_library(JSON_C_LIBRARIES NAMES json-c HINTS ${_JSON_C_LIBRARY_DIRS})
+
+set(JSON_C_CFLAGS_OTHER "${_JSON_C_CFLAGS_OTHER}" CACHE STRING "Additional compiler flags for json-c")
+set(JSON_C_LDFLAGS_OTHER "${_JSON_C_LDFLAGS_OTHER}" CACHE STRING "Additional linker flags for json-c")
+
+find_package_handle_standard_args(JSON_C REQUIRED_VARS JSON_C_LIBRARIES JSON_C_INCLUDE_DIR)
+mark_as_advanced(JSON_C_INCLUDE_DIR JSON_C_LIBRARIES JSON_C_CFLAGS_OTHER JSON_C_LDFLAGS_OTHER)