From 77b5e11016f1f25996c53af6565b6e925c797315 Mon Sep 17 00:00:00 2001 From: Erik Ogenvik Date: Sat, 8 Jul 2023 12:46:41 +0200 Subject: [PATCH] Transitive headers. --- tools/conan/alut/conanfile.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/conan/alut/conanfile.py b/tools/conan/alut/conanfile.py index 44978eb..057a995 100644 --- a/tools/conan/alut/conanfile.py +++ b/tools/conan/alut/conanfile.py @@ -20,14 +20,14 @@ class AlutConan(ConanFile): } default_options = {"shared": False, "fPIC": True} exports = ["CMakeLists.txt", "patches*"] - requires = ( - "openal/1.22.2" - ) url = "" license = "https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html" package_type = "library" user = "smartbody" + def requirements(self): + self.requires("openal/1.22.2", transitive_headers=True) + def generate(self): tc = CMakeToolchain(self) tc.variables['BUILD_EXAMPLES'] = False