mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-04-22 16:09:10 -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>
13 lines
218 B
CMake
13 lines
218 B
CMake
add_library(log-api INTERFACE)
|
|
|
|
target_sources(log-api
|
|
INTERFACE
|
|
log/log.hpp
|
|
log/debug.hpp
|
|
)
|
|
|
|
target_include_directories(log-api
|
|
INTERFACE
|
|
$<BUILD_INTERFACE:${CMAKE_CURRENT_LIST_DIR}>
|
|
)
|