mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-10-27 14:26:04 +03:00
24 lines
325 B
CMake
24 lines
325 B
CMake
file(GLOB PRIVATE_SOURCES
|
|
"*.cpp"
|
|
"command/*/*.cpp"
|
|
"cvar/*.cpp"
|
|
)
|
|
|
|
add_library(console STATIC
|
|
${PRIVATE_SOURCES}
|
|
)
|
|
|
|
target_include_directories(console
|
|
PRIVATE
|
|
${CMAKE_SOURCE_DIR}/src
|
|
)
|
|
|
|
target_link_libraries(console
|
|
PUBLIC
|
|
common
|
|
gx
|
|
storm
|
|
PRIVATE
|
|
client
|
|
)
|