From b3106d2e193e894f101c37236d924a15bb28356b Mon Sep 17 00:00:00 2001 From: Uilian Ries Date: Mon, 12 Feb 2024 11:24:31 +0100 Subject: [PATCH] add include folder for json-c Signed-off-by: Uilian Ries --- recipes/json-c/all/conanfile.py | 1 + 1 file changed, 1 insertion(+) diff --git a/recipes/json-c/all/conanfile.py b/recipes/json-c/all/conanfile.py index 8963e15ae1e8f..222938814d365 100644 --- a/recipes/json-c/all/conanfile.py +++ b/recipes/json-c/all/conanfile.py @@ -68,3 +68,4 @@ def package_info(self): self.cpp_info.set_property("cmake_target_name", "json-c::json-c") self.cpp_info.set_property("pkg_config_name", "json-c") self.cpp_info.libs = collect_libs(self) + self.cpp_info.includedirs = ["include", "include/json-c"]