mirror of
https://github.com/whoahq/whoa.git
synced 2026-02-02 16:52:45 +03:00
19 lines
271 B
CMake
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
|
|
)
|