|
@@ -63,7 +63,7 @@ EXT_RES = \
|
|
|
"$$PWD/res/effect_data.qrc -o $$DESTDIR/res/data006.gtr" \
|
|
|
"$$PWD/res/spell_data.qrc -o $$DESTDIR/res/data007.gtr" \
|
|
|
"$$PWD/res/unit_data.qrc -o $$DESTDIR/res/data008.gtr" \
|
|
|
- "$$PWD/res/common_data.qrc -o $$DESTDIR/res/data009.gtr" \
|
|
|
+ "$$PWD/res/common_data.qrc -o $$DESTDIR/res/data009.gtr"
|
|
|
|
|
|
for (RES, EXT_RES) {
|
|
|
win32 {
|
|
@@ -87,19 +87,23 @@ SOURCES += \
|
|
|
source/racemanager.cpp \
|
|
|
source/soundengine.cpp \
|
|
|
\
|
|
|
-\ #source/effects/effect.cpp \
|
|
|
-\ #source/effects/melledamage.cpp \
|
|
|
-\ #source/effects/selfheal.cpp \
|
|
|
- \
|
|
|
source/gui/guiscenemanager.cpp \
|
|
|
source/gui/scene.cpp \
|
|
|
\
|
|
|
source/hotseatgame/gamemanager.cpp \
|
|
|
source/hotseatgame/unitsqueue.cpp \
|
|
|
+ source/hotseatgame/gameproperties.cpp \
|
|
|
+ \
|
|
|
+ source/spellsmanager.cpp \
|
|
|
+ source/spells/spell.cpp \
|
|
|
+ source/spells/selfhealspell.cpp \
|
|
|
+ source/spells/meleedamagespell.cpp \
|
|
|
+ source/spells/selfmovespell.cpp \
|
|
|
\
|
|
|
-\ #source/skills/spell.cpp \
|
|
|
-\ #source/skills/selfheal.cpp \
|
|
|
-\ #source/skills/melledamage.cpp \
|
|
|
+ source/effects/effect.cpp \
|
|
|
+ source/effects/meleedamage.cpp \
|
|
|
+ source/effects/selfheal.cpp \
|
|
|
+ source/effects/selfmove.cpp \
|
|
|
\
|
|
|
source/units/unit.cpp \
|
|
|
\
|
|
@@ -109,12 +113,11 @@ SOURCES += \
|
|
|
ui/hotseat_recruitment/recruitmentscene.cpp \
|
|
|
ui/loading_form/loadingform.cpp \
|
|
|
ui/main_menu/mainmenu.cpp \
|
|
|
- ui/main_menu/mainmenubackground.cpp \
|
|
|
- source/gui/buttoneventlistener.cpp \
|
|
|
- ui/hotseat_recruitment/iconhint.cpp \
|
|
|
- ui/dialog_form/dialogform.cpp \
|
|
|
- ui/about_us/aboutus.cpp \
|
|
|
- source/hotseatgame/gameproperties.cpp
|
|
|
+ ui/main_menu/mainmenubackground.cpp \
|
|
|
+ source/gui/buttoneventlistener.cpp \
|
|
|
+ ui/hotseat_recruitment/iconhint.cpp \
|
|
|
+ ui/dialog_form/dialogform.cpp \
|
|
|
+ ui/about_us/aboutus.cpp
|
|
|
|
|
|
HEADERS += \
|
|
|
include/abstractfactory.h \
|
|
@@ -125,20 +128,24 @@ HEADERS += \
|
|
|
include/racemanager.h \
|
|
|
include/soundengine.h \
|
|
|
\
|
|
|
-\ #include/effects/effect.h \
|
|
|
-\ #include/effects/melledamage.h \
|
|
|
-\ #include/effects/selfheal.h \
|
|
|
- \
|
|
|
include/gui/guiscenemanager.h \
|
|
|
include/gui/scene.h \
|
|
|
include/gui/buttoneventlistener.h \
|
|
|
\
|
|
|
include/hotseatgame/gamemanager.h \
|
|
|
include/hotseatgame/unitsqueue.h \
|
|
|
+ include/hotseatgame/gameproperties.h \
|
|
|
\
|
|
|
-\ #include/skills/melledamage.h \
|
|
|
-\ #include/skills/selfheal.h \
|
|
|
-\ #include/skills/spell.h \
|
|
|
+ include/spellsmanager.h \
|
|
|
+ include/spells/meleedamagespell.h \
|
|
|
+ include/spells/selfhealspell.h \
|
|
|
+ include/spells/spell.h \
|
|
|
+ include/spells/selfmovespell.h \
|
|
|
+ \
|
|
|
+ include/effects/meleedamage.h \
|
|
|
+ include/effects/selfheal.h \
|
|
|
+ include/effects/effect.h \
|
|
|
+ include/effects/selfmove.h \
|
|
|
\
|
|
|
include/units/unit.h \
|
|
|
\
|
|
@@ -151,8 +158,7 @@ HEADERS += \
|
|
|
ui/main_menu/mainmenubackground.h \
|
|
|
ui/hotseat_recruitment/iconhint.h \
|
|
|
ui/dialog_form/dialogform.h \
|
|
|
- ui/about_us/aboutus.h \
|
|
|
- include/hotseatgame/gameproperties.h
|
|
|
+ ui/about_us/aboutus.h
|
|
|
|
|
|
FORMS += \
|
|
|
ui/hotseat_game/hotseatgame.ui \
|
|
@@ -160,22 +166,23 @@ FORMS += \
|
|
|
ui/hotseat_prebattle/prebattlescene.ui \
|
|
|
ui/hotseat_recruitment/recruitmentscene.ui \
|
|
|
ui/loading_form/loadingform.ui \
|
|
|
- ui/main_menu/mainmenu.ui \
|
|
|
- ui/main_menu/mainmenubackground.ui \
|
|
|
- ui/dialog_form/dialogform.ui \
|
|
|
+ ui/main_menu/mainmenu.ui \
|
|
|
+ ui/main_menu/mainmenubackground.ui \
|
|
|
+ ui/dialog_form/dialogform.ui \
|
|
|
ui/about_us/aboutus.ui
|
|
|
|
|
|
RESOURCES += \
|
|
|
-# res/hotseat_intro.qrc \
|
|
|
-# res/hotseat_recruitment.qrc \
|
|
|
-# res/hotseat_prebattle.qrc \
|
|
|
-# res/hotseat_game.qrc \
|
|
|
-# res/main_menu.qrc \
|
|
|
-# res/hotseat_intro.qrc \
|
|
|
-# \
|
|
|
-# res/effect_data.qrc \
|
|
|
-# res/spell_data.qrc \
|
|
|
-# res/unit_data.qrc \
|
|
|
-# res/common_data.qrc
|
|
|
+ res/hotseat_intro.qrc \
|
|
|
+ res/hotseat_recruitment.qrc \
|
|
|
+ res/hotseat_prebattle.qrc \
|
|
|
+ res/hotseat_game.qrc \
|
|
|
+ res/main_menu.qrc \
|
|
|
+ res/hotseat_intro.qrc \
|
|
|
+ \
|
|
|
+ res/effect_data.qrc \
|
|
|
+ res/spell_data.qrc \
|
|
|
+ res/unit_data.qrc \
|
|
|
+ res/common_data.qrc
|
|
|
+# res/all_data.qrc
|
|
|
|
|
|
RC_ICONS = $$PWD/assets/common/icon.ico
|