mirror of
https://github.com/redstrate/Astra.git
synced 2025-04-23 21:07:45 +00:00
12 lines
282 B
Text
12 lines
282 B
Text
|
set(HEADERS
|
||
|
include/cmdinterface.h)
|
||
|
|
||
|
set(SRC
|
||
|
src/cmdinterface.cpp)
|
||
|
|
||
|
add_library(astra_cli STATIC ${HEADERS} ${SRC})
|
||
|
target_include_directories(astra_cli PUBLIC include)
|
||
|
target_link_libraries(astra_cli PUBLIC
|
||
|
astra_core
|
||
|
Qt5::Core
|
||
|
Qt5::Network)
|