build: 💥 MP_UNITS_BUILD_LA and MP_UNITS_IWYU CMake options now have _DEV_ in the name

This commit is contained in:
Mateusz Pusz
2024-04-12 09:43:02 +02:00
parent 5036a3e0e0
commit 7b57ce5ab1
4 changed files with 11 additions and 13 deletions

View File

@ -151,7 +151,9 @@ class MPUnitsConan(ConanFile):
if self.options.cxx_modules:
tc.cache_variables["CMAKE_CXX_SCAN_FOR_MODULES"] = True
tc.cache_variables["MP_UNITS_BUILD_CXX_MODULES"] = True
tc.cache_variables["MP_UNITS_BUILD_LA"] = self._build_all and not self._skip_la
tc.cache_variables["MP_UNITS_DEV_BUILD_LA"] = (
self._build_all and not self._skip_la
)
tc.cache_variables["MP_UNITS_USE_FMTLIB"] = bool(self.options.use_fmtlib)
tc.generate()
deps = CMakeDeps(self)