|
@@ -64,7 +64,7 @@ win32 {
|
|
|
}
|
|
|
|
|
|
unix {
|
|
|
- guiRes.commands += rcc -binary $$PWD/res/hotseatgame/game_ui.qrc.qrc -o $$DESTDIR/res/game_ui_data.gtr $$escape_expand(\n\t) \
|
|
|
+ guiRes.commands += rcc -binary $$PWD/res/hotseatgame/game_ui.qrc -o $$DESTDIR/res/game_ui_data.gtr $$escape_expand(\n\t) \
|
|
|
rcc -binary $$PWD/res/hotseatgame/units.qrc -o $$DESTDIR/res/unit_data.gtr $$escape_expand(\n\t) \
|
|
|
rcc -binary $$PWD/res/hotseatgame/effects.qrc -o $$DESTDIR/res/effect_data.gtr $$escape_expand(\n\t) \
|
|
|
rcc -binary $$PWD/res/hotseatgame/spells.qrc -o $$DESTDIR/res/spell_data.gtr
|
|
@@ -76,61 +76,61 @@ PRE_TARGETDEPS += BuildResources
|
|
|
# ================================================== #
|
|
|
SOURCES += \
|
|
|
source/main.cpp \
|
|
|
- source/Cell.cpp \
|
|
|
- source/gui/Scene.cpp \
|
|
|
- source/gui/GuiSceneManager.cpp \
|
|
|
- source/gui/GUI.cpp \
|
|
|
- source/gui/MainMenu.cpp \
|
|
|
- source/gui/LoadingForm.cpp \
|
|
|
- source/units/Mage.cpp \
|
|
|
- source/units/Unit.cpp \
|
|
|
- source/units/Warrior.cpp \
|
|
|
- source/PlayerManager.cpp \
|
|
|
- source/Race.cpp \
|
|
|
- source/RaceManager.cpp \
|
|
|
- source/hotseatgame/GameManager.cpp \
|
|
|
- source/hotseatgame/UnitsQueue.cpp \
|
|
|
- source/hotseatgame/gui/PlayerVsPlayerIntro.cpp \
|
|
|
- source/hotseatgame/gui/PreBattleScene.cpp \
|
|
|
- source/hotseatgame/gui/RaceIcon.cpp \
|
|
|
- source/hotseatgame/gui/RecruitmentScene.cpp \
|
|
|
- source/hotseatgame/gui/UnitIcon.cpp \
|
|
|
- source/hotseatgame/gui/HotSeatGame.cpp \
|
|
|
- source/effects/Effect.cpp
|
|
|
+ source/effects/effect.cpp \
|
|
|
+ source/gui/gui.cpp \
|
|
|
+ source/gui/guiscenemanager.cpp \
|
|
|
+ source/gui/loadingform.cpp \
|
|
|
+ source/gui/mainmenu.cpp \
|
|
|
+ source/gui/scene.cpp \
|
|
|
+ source/hotseatgame/gui/hotseatgame.cpp \
|
|
|
+ source/hotseatgame/gui/playervsplayerintro.cpp \
|
|
|
+ source/hotseatgame/gui/prebattlescene.cpp \
|
|
|
+ source/hotseatgame/gui/raceicon.cpp \
|
|
|
+ source/hotseatgame/gui/recruitmentscene.cpp \
|
|
|
+ source/hotseatgame/gui/uniticon.cpp \
|
|
|
+ source/hotseatgame/gamemanager.cpp \
|
|
|
+ source/hotseatgame/unitsqueue.cpp \
|
|
|
+ source/units/mage.cpp \
|
|
|
+ source/units/unit.cpp \
|
|
|
+ source/units/warrior.cpp \
|
|
|
+ source/cell.cpp \
|
|
|
+ source/playermanager.cpp \
|
|
|
+ source/race.cpp \
|
|
|
+ source/racemanager.cpp
|
|
|
|
|
|
HEADERS += \
|
|
|
- include/Cell.h \
|
|
|
- include/Player.h \
|
|
|
- include/PlayerManager.h \
|
|
|
- include/Race.h \
|
|
|
- include/RaceManager.h \
|
|
|
- include/AbstractFactory.h \
|
|
|
- include/units/Mage.h \
|
|
|
- include/units/Unit.h \
|
|
|
- include/units/Warrior.h \
|
|
|
- include/gui/GUI.h \
|
|
|
- include/gui/GuiSceneManager.h \
|
|
|
- include/gui/MainMenu.h \
|
|
|
- include/gui/Scene.h \
|
|
|
- include/gui/LoadingForm.h \
|
|
|
- include/hotseatgame/GameManager.h \
|
|
|
- include/hotseatgame/UnitsQueue.h \
|
|
|
- include/hotseatgame/gui/PlayerVsPlayerIntro.h \
|
|
|
- include/hotseatgame/gui/PreBattleScene.h \
|
|
|
- include/hotseatgame/gui/RaceIcon.h \
|
|
|
- include/hotseatgame/gui/RecruitmentScene.h \
|
|
|
- include/hotseatgame/gui/UnitIcon.h \
|
|
|
- include/hotseatgame/gui/HotSeatGame.h \
|
|
|
- include/effects/Effect.h
|
|
|
+ include/effects/effect.h \
|
|
|
+ include/gui/gui.h \
|
|
|
+ include/gui/guiscenemanager.h \
|
|
|
+ include/gui/loadingform.h \
|
|
|
+ include/gui/mainmenu.h \
|
|
|
+ include/gui/scene.h \
|
|
|
+ include/hotseatgame/gui/hotseatgame.h \
|
|
|
+ include/hotseatgame/gui/playervsplayerintro.h \
|
|
|
+ include/hotseatgame/gui/prebattlescene.h \
|
|
|
+ include/hotseatgame/gui/raceicon.h \
|
|
|
+ include/hotseatgame/gui/recruitmentscene.h \
|
|
|
+ include/hotseatgame/gui/uniticon.h \
|
|
|
+ include/hotseatgame/gamemanager.h \
|
|
|
+ include/hotseatgame/unitsqueue.h \
|
|
|
+ include/units/mage.h \
|
|
|
+ include/units/unit.h \
|
|
|
+ include/units/warrior.h \
|
|
|
+ include/abstractfactory.h \
|
|
|
+ include/cell.h \
|
|
|
+ include/player.h \
|
|
|
+ include/playermanager.h \
|
|
|
+ include/race.h \
|
|
|
+ include/racemanager.h
|
|
|
|
|
|
FORMS += \
|
|
|
- include/gui/GUI.ui \
|
|
|
- include/gui/MainMenu.ui \
|
|
|
- include/hotseatgame/gui/PlayerVsPlayerIntro.ui \
|
|
|
- include/hotseatgame/gui/PreBattleScene.ui \
|
|
|
- include/hotseatgame/gui/RecruitmentScene.ui \
|
|
|
- include/hotseatgame/gui/HotSeatGame.ui \
|
|
|
- include/gui/LoadingForm.ui
|
|
|
+ include/gui/gui.ui \
|
|
|
+ include/gui/loadingform.ui \
|
|
|
+ include/gui/mainmenu.ui \
|
|
|
+ include/hotseatgame/gui/hotseatgame.ui \
|
|
|
+ include/hotseatgame/gui/playervsplayerintro.ui \
|
|
|
+ include/hotseatgame/gui/prebattlescene.ui \
|
|
|
+ include/hotseatgame/gui/recruitmentscene.ui
|
|
|
|
|
|
RESOURCES += \
|
|
|
res/GUI.qrc
|