mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-04-20 15:07:17 -04:00
Split module-utils into smaller components for better dependency management. Fix many dependencies throughout the project. Signed-off-by: Marcin Smoczyński <smoczynski.marcin@gmail.com>
11 lines
202 B
CMake
11 lines
202 B
CMake
add_library(utils-math INTERFACE)
|
|
|
|
target_include_directories(utils-math
|
|
INTERFACE
|
|
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}>
|
|
)
|
|
|
|
if (${ENABLE_TESTS})
|
|
add_subdirectory(tests)
|
|
endif()
|