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

@@ -30,7 +30,7 @@ if(${projectPrefix}BUILD_CXX_MODULES)
endif()
target_link_libraries(unit_tests_runtime PRIVATE mp-units::mp-units Catch2::Catch2WithMain)
if(${projectPrefix}BUILD_LA)
if(${projectPrefix}DEV_BUILD_LA)
find_package(wg21_linear_algebra REQUIRED)
target_sources(unit_tests_runtime PRIVATE linear_algebra_test.cpp)
target_link_libraries(unit_tests_runtime PRIVATE wg21_linear_algebra::wg21_linear_algebra)