mirror of
https://github.com/liudf0716/apfree_wifidog.git
synced 2025-01-08 11:57:37 +08:00
2364a5a768
Signed-off-by: Dengfeng Liu <liudf0716@gmail.com>
22 lines
705 B
CMake
22 lines
705 B
CMake
# 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)
|