whoa/src/component/CMakeLists.txt
2025-10-14 11:39:06 -05:00

19 lines
271 B
CMake

file(GLOB PRIVATE_SOURCES "*.cpp")
add_library(component STATIC
${PRIVATE_SOURCES}
)
target_include_directories(component
PRIVATE
${CMAKE_SOURCE_DIR}/src
)
target_link_libraries(component
PRIVATE
db
model
PUBLIC
storm
)