aboutsummaryrefslogtreecommitdiff
path: root/CMake/FindJsonC.cmake
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2017-12-01 08:21:01 -0500
committerGitHub <noreply@github.com>2017-12-01 08:21:01 -0500
commit1cfebe827ae53a243ffdd1e09f8b71d4c1a4e254 (patch)
treeb74002984ff80201c02ed9c22ca2fe1cdae98e23 /CMake/FindJsonC.cmake
parent1fbcd097ae2841b5f8f56cf67c1e94605deb0d25 (diff)
parent3546412fc9fb9a51b4316070eff4991c14594127 (diff)
Merge pull request #1479 from acrisci/feature/meson-build
meson build
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 @@
-# - 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)
-
-if (JsonC_FIND_REQUIRED)
- set(_pkgconfig_REQUIRED "REQUIRED")
-else()
- set(_pkgconfig_REQUIRED "")
-endif()
-
-if(JsonC_FIND_VERSION)
- pkg_check_modules(PC_JSONC ${_pkgconfig_REQUIRED} json-c=${JsonC_FIND_VERSION})
-else()
- pkg_check_modules(PC_JSONC ${_pkgconfig_REQUIRED} json-c)
-endif()
-
-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)