mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-04-16 01:55:21 +03:00
21 lines
275 B
CMake
21 lines
275 B
CMake
file(GLOB PRIVATE_SOURCES
|
|
"*.cpp"
|
|
)
|
|
|
|
add_library(console STATIC
|
|
${PRIVATE_SOURCES}
|
|
)
|
|
|
|
target_include_directories(console
|
|
PRIVATE
|
|
${CMAKE_SOURCE_DIR}/src
|
|
)
|
|
|
|
target_link_libraries(console
|
|
PUBLIC
|
|
common
|
|
storm
|
|
PRIVATE
|
|
client
|
|
)
|