Helps to be explict what license each module is under Signed-off-by: Thomas Ingleby <thomas.ingleby@intel.com>
25 lines
788 B
CMake
25 lines
788 B
CMake
# Copyright (c) 2016 Intel Corporation
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
# 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_search_module (PC_JSON-C QUIET json-c json)
|
|
|
|
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)
|