mirror of
https://github.com/redstrate/Astra.git
synced 2025-04-23 21:07:45 +00:00
It makes no sense for Core to depend on Desktop, and this removes that circular dependency.
25 lines
No EOL
717 B
CMake
25 lines
No EOL
717 B
CMake
set(HEADERS
|
|
include/aboutwindow.h
|
|
include/bannerwidget.h
|
|
include/desktopinterface.h
|
|
include/gamescopesettingswindow.h
|
|
include/launcherwindow.h
|
|
include/settingswindow.h
|
|
include/autologinwindow.h)
|
|
|
|
set(SRC
|
|
src/aboutwindow.cpp
|
|
src/bannerwidget.cpp
|
|
src/desktopinterface.cpp
|
|
src/gamescopesettingswindow.cpp
|
|
src/launcherwindow.cpp
|
|
src/settingswindow.cpp
|
|
src/autologinwindow.cpp)
|
|
|
|
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) |