chore(console): split out console library

This commit is contained in:
Tristan 'Natrist' Cormier 2023-03-25 10:56:41 -04:00 committed by GitHub
parent ea79f5de1d
commit 6f52a6287d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
14 changed files with 34 additions and 10 deletions

View 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
)