From f227cdd227da1ca1cb8d126f1af93ae73d85dd9a Mon Sep 17 00:00:00 2001 From: Mateusz Pusz Date: Fri, 24 May 2024 09:36:29 +0200 Subject: [PATCH] build: `tc.absolute_paths = True` set to enable CMake CI --- conanfile.py | 1 + 1 file changed, 1 insertion(+) diff --git a/conanfile.py b/conanfile.py index dc57a1d09..b4ca324d0 100644 --- a/conanfile.py +++ b/conanfile.py @@ -221,6 +221,7 @@ def layout(self): def generate(self): tc = CMakeToolchain(self) if self._build_all: + tc.absolute_paths = True # only needed for CMake CI tc.cache_variables["CMAKE_EXPORT_COMPILE_COMMANDS"] = True tc.cache_variables["CMAKE_VERIFY_INTERFACE_HEADER_SETS"] = True tc.cache_variables["MP_UNITS_DEV_BUILD_LA"] = not self._skip_la