Browse Source

added fixes to compile

noath 6 years ago
parent
commit
9932fe8214
2 changed files with 7 additions and 3 deletions
  1. 6 2
      client.pro
  2. 1 1
      source/hotseatgame/GameManager.cpp

+ 6 - 2
client.pro

@@ -44,7 +44,9 @@ SOURCES += \
     source/gui/raceicon.cpp \
     source/playermanager.cpp \
     source/gui/prebattlescene.cpp \
-    source/Cell.cpp
+    source/Cell.cpp \
+    source/UnitsQueue.h \
+    source/hotseatgame/GameManager.cpp
 
 HEADERS += \
     include/gui/uniticon.h \
@@ -65,7 +67,9 @@ HEADERS += \
     include/gui/raceicon.h \
     include/playermanager.h \
     include/gui/prebattlescene.h \
-    include/Cell.h
+    include/Cell.h \
+    include/UnitsQueue.h \
+    include/hotseatgame/GameManager.h
 
 FORMS += \
     include/gui/gui.ui \

+ 1 - 1
source/hotseatgame/GameManager.cpp

@@ -2,7 +2,7 @@
  * Someone tells, that Qt can to build this
  */
 #include "Cell.h"
-#include "GameManager.h"
+#include "include/hotseatgame/GameManager.h"
 
 #include <iostream>