aboutsummaryrefslogtreecommitdiff
path: root/cmake/FindJsonC.cmake
blob: f3c90df06ca54ee41f76c42a7d86dd311c52d774 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#
# JSONC_INCLUDE_DIRS
# JSONC_LIBRARIES

find_package(PkgConfig QUIET)
if (PKG_CONFIG_FOUND)
	pkg_check_modules(_JSONC QUIET json-c)
endif()

if(CMAKE_SIZEOF_VOID_P EQUAL 8)
	set(_lib_suffix 64)
else()
	set(_lib_suffix 32)
endif()

find_path(JSONC_INC
	NAMES json.h
	HINTS
		ENV jsoncPath${_lib_suffix}
		ENV jsoncPath
		${_JSONC_INCLUDE_DIRS}
	PATHS
		/usr/include/json-c /usr/local/include/json-c)

find_library(JSONC_LIB
	NAMES ${_JSONC_LIBRARIES} jsonc json-c
	HINTS
		ENV jsoncPath${_lib_suffix}
		ENV jsoncPath
		${_JSONC_LIBRARY_DIRS}
		${_JSONC_STATIC_LIBRARY_DIRS}
	PATHS
		/usr/lib /usr/local/lib)

include(FindPackageHandleStandardArgs)
find_package_handle_standard_args(JsonC DEFAULT_MSG JSONC_LIB JSONC_INC)
mark_as_advanced(JSONC_INC JSONC_LIB)

if(JSONC_FOUND)
	set(JSONC_INCLUDE_DIRS ${JSONC_INC})
	set(JSONC_LIBRARIES ${JSONC_LIB})
	if (BUILD_STATIC)
		set(JSONC_LIBRARIES ${JSONC_LIBRARIES} ${_JSONC_STATIC_LIBRARY_DIRS})
	endif()
endif()