mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-12-15 04:22:28 +00:00
chore(console): split out console library
This commit is contained in:
parent
ea79f5de1d
commit
6f52a6287d
14 changed files with 34 additions and 10 deletions
18
src/console/CMakeLists.txt
Normal file
18
src/console/CMakeLists.txt
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
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
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue