1
Fork 0
mirror of https://github.com/redstrate/Astra.git synced 2025-04-22 12:47:44 +00:00
astra/launcher/desktop/CMakeLists.txt

27 lines
777 B
Text
Raw Normal View History

2022-06-08 12:45:12 -04:00
set(HEADERS
include/aboutwindow.h
include/assetupdater.h
include/bannerwidget.h
include/desktopinterface.h
include/gamescopesettingswindow.h
include/launcherwindow.h
include/settingswindow.h
include/autologinwindow.h)
2022-06-08 12:45:12 -04:00
set(SRC
src/aboutwindow.cpp
src/assetupdater.cpp
src/bannerwidget.cpp
src/desktopinterface.cpp
src/gamescopesettingswindow.cpp
src/launcherwindow.cpp
src/settingswindow.cpp
src/autologinwindow.cpp)
2022-06-08 12:45:12 -04:00
add_library(astra_desktop STATIC ${HEADERS} ${SRC})
target_include_directories(astra_desktop PUBLIC include)
target_link_libraries(astra_desktop PUBLIC
astra_core
Qt5::Core
Qt5::Widgets
Qt5::Network)