mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-12-12 11:12:29 +00:00
17 lines
255 B
Text
17 lines
255 B
Text
|
|
file(GLOB PRIVATE_SOURCES "*.cpp")
|
||
|
|
|
||
|
|
add_library(clientobject STATIC
|
||
|
|
${PRIVATE_SOURCES}
|
||
|
|
)
|
||
|
|
|
||
|
|
target_include_directories(clientobject
|
||
|
|
PRIVATE
|
||
|
|
${CMAKE_SOURCE_DIR}/src
|
||
|
|
)
|
||
|
|
|
||
|
|
target_link_libraries(clientobject
|
||
|
|
PRIVATE
|
||
|
|
storm
|
||
|
|
db
|
||
|
|
)
|