mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-10 14:51:40 +00:00
moved launcher window out of common.
This needs to be different for Raze so it cannot be in shared code.
This commit is contained in:
parent
19435293af
commit
e7ac2fe741
4 changed files with 6 additions and 2 deletions
|
@ -617,6 +617,7 @@ file( GLOB HEADER_FILES
|
||||||
common/scripting/frontend/*.h
|
common/scripting/frontend/*.h
|
||||||
|
|
||||||
utility/*.h
|
utility/*.h
|
||||||
|
launcher/*.h
|
||||||
scripting/*.h
|
scripting/*.h
|
||||||
scripting/backend/*.h
|
scripting/backend/*.h
|
||||||
scripting/decorate/*.h
|
scripting/decorate/*.h
|
||||||
|
@ -976,6 +977,8 @@ set (PCH_SOURCES
|
||||||
rendering/swrenderer/textures/warptexture.cpp
|
rendering/swrenderer/textures/warptexture.cpp
|
||||||
rendering/swrenderer/textures/swcanvastexture.cpp
|
rendering/swrenderer/textures/swcanvastexture.cpp
|
||||||
events.cpp
|
events.cpp
|
||||||
|
launcher/launcherwindow.cpp
|
||||||
|
|
||||||
common/audio/sound/i_sound.cpp
|
common/audio/sound/i_sound.cpp
|
||||||
common/audio/sound/oalsound.cpp
|
common/audio/sound/oalsound.cpp
|
||||||
common/audio/sound/s_environment.cpp
|
common/audio/sound/s_environment.cpp
|
||||||
|
@ -999,7 +1002,6 @@ set (PCH_SOURCES
|
||||||
common/startscreen/startscreen_strife.cpp
|
common/startscreen/startscreen_strife.cpp
|
||||||
common/startscreen/startscreen_generic.cpp
|
common/startscreen/startscreen_generic.cpp
|
||||||
common/startscreen/endoom.cpp
|
common/startscreen/endoom.cpp
|
||||||
common/widgets/launcherwindow.cpp
|
|
||||||
common/widgets/errorwindow.cpp
|
common/widgets/errorwindow.cpp
|
||||||
common/widgets/netstartwindow.cpp
|
common/widgets/netstartwindow.cpp
|
||||||
common/widgets/widgetresourcedata.cpp
|
common/widgets/widgetresourcedata.cpp
|
||||||
|
@ -1329,6 +1331,7 @@ include_directories(
|
||||||
scripting
|
scripting
|
||||||
scripting/zscript
|
scripting/zscript
|
||||||
rendering
|
rendering
|
||||||
|
launcher
|
||||||
../libraries/ZVulkan/include
|
../libraries/ZVulkan/include
|
||||||
../libraries/ZWidget/include
|
../libraries/ZWidget/include
|
||||||
${SYSTEM_SOURCES_DIR}
|
${SYSTEM_SOURCES_DIR}
|
||||||
|
@ -1534,6 +1537,7 @@ source_group("Utility\\Smackerdec" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_D
|
||||||
source_group("Utility\\Smackerdec\\Headers" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/libsmackerdec/include/.+")
|
source_group("Utility\\Smackerdec\\Headers" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/libsmackerdec/include/.+")
|
||||||
source_group("Utility\\Smackerdec\\Sources" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/libsmackerdec/src/.+")
|
source_group("Utility\\Smackerdec\\Sources" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/libsmackerdec/src/.+")
|
||||||
source_group("Statusbar" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/g_statusbar/.+")
|
source_group("Statusbar" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/g_statusbar/.+")
|
||||||
|
source_group("Launcher" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/launcher/.+")
|
||||||
source_group("Versioning" FILES version.h win32/zdoom.rc)
|
source_group("Versioning" FILES version.h win32/zdoom.rc)
|
||||||
source_group("Xlat" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/xlat/.+" FILES ${CMAKE_CURRENT_BINARY_DIR}/xlat_parser.c ${CMAKE_CURRENT_BINARY_DIR}/xlat_parser.h)
|
source_group("Xlat" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/xlat/.+" FILES ${CMAKE_CURRENT_BINARY_DIR}/xlat_parser.c ${CMAKE_CURRENT_BINARY_DIR}/xlat_parser.h)
|
||||||
source_group("Source Files" FILES ${CMAKE_CURRENT_BINARY_DIR}/sc_man_scanner.h common/engine/sc_man_scanner.re)
|
source_group("Source Files" FILES ${CMAKE_CURRENT_BINARY_DIR}/sc_man_scanner.h common/engine/sc_man_scanner.re)
|
||||||
|
|
|
@ -87,7 +87,7 @@
|
||||||
#include "i_interface.h"
|
#include "i_interface.h"
|
||||||
#include "i_mainwindow.h"
|
#include "i_mainwindow.h"
|
||||||
|
|
||||||
#include "common/widgets/launcherwindow.h"
|
#include "launcherwindow.h"
|
||||||
|
|
||||||
// MACROS ------------------------------------------------------------------
|
// MACROS ------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue