mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-04-19 06:30:46 -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>
21 lines
360 B
CMake
21 lines
360 B
CMake
add_library(eventstore STATIC)
|
|
target_sources(eventstore
|
|
PRIVATE
|
|
${CMAKE_CURRENT_SOURCE_DIR}/EventStore.hpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/EventStore.cpp
|
|
)
|
|
|
|
target_include_directories(eventstore
|
|
PUBLIC
|
|
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}>
|
|
)
|
|
|
|
target_link_libraries(eventstore
|
|
PUBLIC
|
|
hal
|
|
|
|
PRIVATE
|
|
module-os
|
|
)
|
|
|