summaryrefslogtreecommitdiffstats
path: root/CMake
diff options
context:
space:
mode:
authorLibravatar minus <minus@mnus.de>2015-08-27 00:06:09 +0200
committerLibravatar minus <minus@mnus.de>2015-08-27 00:06:09 +0200
commitc948432fb460fbd6d9304034293dcf691a30a628 (patch)
tree70816ebb76153e092381dbede629e1f8e89b2395 /CMake
parentadded json-c lib and implemented IPC get_version (diff)
downloadsway-c948432fb460fbd6d9304034293dcf691a30a628.tar.gz
sway-c948432fb460fbd6d9304034293dcf691a30a628.tar.zst
sway-c948432fb460fbd6d9304034293dcf691a30a628.zip
fixed json-c CMake inclusion
Diffstat (limited to 'CMake')
-rw-r--r--CMake/FindJsonC.cmake17
1 files changed, 17 insertions, 0 deletions
diff --git a/CMake/FindJsonC.cmake b/CMake/FindJsonC.cmake
new file mode 100644
index 00000000..2ca0df39
--- /dev/null
+++ b/CMake/FindJsonC.cmake
@@ -0,0 +1,17 @@
1# - Find json-c
2# Find the json-c libraries
3#
4# This module defines the following variables:
5# JSONC_FOUND - True if JSONC is found
6# JSONC_LIBRARIES - JSONC libraries
7# JSONC_INCLUDE_DIRS - JSONC include directories
8#
9
10find_package(PkgConfig)
11pkg_check_modules(PC_JSONC QUIET JSONC)
12find_path(JSONC_INCLUDE_DIRS NAMES json-c/json.h HINTS ${PC_JSONC_INCLUDE_DIRS})
13find_library(JSONC_LIBRARIES NAMES json-c HINTS ${PC_JSONC_LIBRARY_DIRS})
14
15include(FindPackageHandleStandardArgs)
16find_package_handle_standard_args(JSONC DEFAULT_MSG JSONC_LIBRARIES JSONC_INCLUDE_DIRS)
17mark_as_advanced(JSONC_LIBRARIES JSONC_INCLUDE_DIRS)