thunderbrew/src/console/CMakeLists.txt

23 lines
308 B
Text
Raw Normal View History

file(GLOB PRIVATE_SOURCES
"*.cpp"
"command/*/*.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
)