Skip to content
Snippets Groups Projects
Commit 88a44122 authored by Igor Gnatenko's avatar Igor Gnatenko Committed by est31
Browse files

FindJson: use PATH_SUFFIXES jsoncpp to find incdir

For example, on Fedora systems jsoncpp headers is installed in `/usr/include/jsoncpp`.
parent 8787d2e7
No related branches found
No related tags found
No related merge requests found
......@@ -8,7 +8,7 @@ option(ENABLE_SYSTEM_JSONCPP "Enable using a system-wide JSONCPP. May cause seg
if(ENABLE_SYSTEM_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)
find_package_handle_standard_args(JSONCPP DEFAULT_MSG JSON_LIBRARY JSON_INCLUDE_DIR)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment