summaryrefslogtreecommitdiffstats
path: root/CMake/FindJsonC.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'CMake/FindJsonC.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 @@
1# - Find json-c
2# Find the json-c libraries
3#
4# This module defines the following variables:
5# JSONC_FOUND - True if JSONC is found
6# JSONC_LIBRARIES - JSONC libraries
7# JSONC_INCLUDE_DIRS - JSONC include directories
8#
9
10find_package(PkgConfig)
11pkg_check_modules(PC_JSONC QUIET JSONC)
12find_path(JSONC_INCLUDE_DIRS NAMES json-c/json.h HINTS ${PC_JSONC_INCLUDE_DIRS})
13find_library(JSONC_LIBRARIES NAMES json-c HINTS ${PC_JSONC_LIBRARY_DIRS})
14
15include(FindPackageHandleStandardArgs)
16find_package_handle_standard_args(JSONC DEFAULT_MSG JSONC_LIBRARIES JSONC_INCLUDE_DIRS)
17mark_as_advanced(JSONC_LIBRARIES JSONC_INCLUDE_DIRS)