mirror of
https://github.com/moparisthebest/minetest
synced 2024-11-17 06:45:18 -05:00
FindJson: use PATH_SUFFIXES jsoncpp to find incdir
For example, on Fedora systems jsoncpp headers is installed in `/usr/include/jsoncpp`.
This commit is contained in:
parent
8787d2e7e9
commit
88a44122ab
@ -8,7 +8,7 @@ option(ENABLE_SYSTEM_JSONCPP "Enable using a system-wide JSONCPP. May cause seg
|
|||||||
|
|
||||||
if(ENABLE_SYSTEM_JSONCPP)
|
if(ENABLE_SYSTEM_JSONCPP)
|
||||||
find_library(JSON_LIBRARY NAMES jsoncpp)
|
find_library(JSON_LIBRARY NAMES jsoncpp)
|
||||||
find_path(JSON_INCLUDE_DIR json/features.h)
|
find_path(JSON_INCLUDE_DIR json/features.h PATH_SUFFIXES jsoncpp)
|
||||||
|
|
||||||
include(FindPackageHandleStandardArgs)
|
include(FindPackageHandleStandardArgs)
|
||||||
find_package_handle_standard_args(JSONCPP DEFAULT_MSG JSON_LIBRARY JSON_INCLUDE_DIR)
|
find_package_handle_standard_args(JSONCPP DEFAULT_MSG JSON_LIBRARY JSON_INCLUDE_DIR)
|
||||||
|
Loading…
Reference in New Issue
Block a user