mirror of
https://github.com/whoahq/whoa.git
synced 2026-03-18 13:41:06 +03:00
21 lines
279 B
CMake
21 lines
279 B
CMake
file(GLOB PRIVATE_SOURCES
|
|
"*.cpp"
|
|
"client/*.cpp"
|
|
"movement/*.cpp"
|
|
)
|
|
|
|
add_library(object STATIC
|
|
${PRIVATE_SOURCES}
|
|
)
|
|
|
|
target_include_directories(object
|
|
PRIVATE
|
|
${CMAKE_SOURCE_DIR}/src
|
|
)
|
|
|
|
target_link_libraries(object
|
|
PRIVATE
|
|
db
|
|
ui
|
|
)
|