summaryrefslogtreecommitdiffstats
path: root/CMake/FindJsonC.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'CMake/FindJsonC.cmake')
-rw-r--r--CMake/FindJsonC.cmake29
1 files changed, 0 insertions, 29 deletions
diff --git a/CMake/FindJsonC.cmake b/CMake/FindJsonC.cmake
deleted file mode 100644
index bbf6930c..00000000
--- a/CMake/FindJsonC.cmake
+++ /dev/null
@@ -1,29 +0,0 @@
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)
11
12if (JsonC_FIND_REQUIRED)
13 set(_pkgconfig_REQUIRED "REQUIRED")
14else()
15 set(_pkgconfig_REQUIRED "")
16endif()
17
18if(JsonC_FIND_VERSION)
19 pkg_check_modules(PC_JSONC ${_pkgconfig_REQUIRED} json-c=${JsonC_FIND_VERSION})
20else()
21 pkg_check_modules(PC_JSONC ${_pkgconfig_REQUIRED} json-c)
22endif()
23
24find_path(JSONC_INCLUDE_DIRS NAMES json-c/json.h HINTS ${PC_JSONC_INCLUDE_DIRS})
25find_library(JSONC_LIBRARIES NAMES json-c HINTS ${PC_JSONC_LIBRARY_DIRS})
26include(FindPackageHandleStandardArgs)
27
28find_package_handle_standard_args(JSONC DEFAULT_MSG JSONC_LIBRARIES JSONC_INCLUDE_DIRS)
29mark_as_advanced(JSONC_LIBRARIES JSONC_INCLUDE_DIRS)