summaryrefslogtreecommitdiff
path: root/peripheral/libmraa/cmake/modules/FindJSON-C.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'peripheral/libmraa/cmake/modules/FindJSON-C.cmake')
-rw-r--r--peripheral/libmraa/cmake/modules/FindJSON-C.cmake21
1 files changed, 0 insertions, 21 deletions
diff --git a/peripheral/libmraa/cmake/modules/FindJSON-C.cmake b/peripheral/libmraa/cmake/modules/FindJSON-C.cmake
deleted file mode 100644
index dd8a418..0000000
--- a/peripheral/libmraa/cmake/modules/FindJSON-C.cmake
+++ /dev/null
@@ -1,21 +0,0 @@
-# JSON-C_FOUND - true if library and headers were found
-# JSON-C_INCLUDE_DIRS - include directories
-# JSON-C_LIBRARIES - library directories
-
-find_package (PkgConfig)
-pkg_check_modules (PC_JSON-C QUIET json-c)
-
-find_path (JSON-C_INCLUDE_DIR json.h HINTS ${PC_JSON-C_INCLUDEDIR}
-${PC_JSON-C_INCLUDE_DIRS} PATH_SUFFIXES json-c json)
-
-find_library (JSON-C_LIBRARY NAMES json-c libjson-c HINTS ${PC_JSON-C_LIBDIR}
-${PC_JSON-C_LIBRARY_DIRS})
-
-set (JSON-C_LIBRARIES ${JSON-C_LIBRARY})
-set (JSON-C_INCLUDE_DIRS ${JSON-C_INCLUDE_DIR})
-
-include (FindPackageHandleStandardArgs)
-
-find_package_handle_standard_args (JSON-C DEFAULT_MSG JSON-C_LIBRARY JSON-C_INCLUDE_DIR)
-
-mark_as_advanced (JSON-C_INCLUDE_DIR JSON-C_LIBRARY)