1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
## in this file it is important to place
## sources after their dependencies
SRC = \
src/shared/misc/Exceptions.cpp \
src/shared/definitions/Coordinates.cpp \
src/shared/definitions/PathNode.cpp \
src/shared/definitions/Map.cpp \
src/shared/units/TerraFormer.cpp \
src/shared/units/Unit.cpp \
src/shared/units/Spirit.cpp \
src/shared/units/Summoner.cpp \
src/shared/units/Magician.cpp \
src/shared/units/Scout.cpp \
src/shared/units/Warrior.cpp \
src/shared/units/UnitContainer.cpp \
src/shared/socket/sfml/SFSocket.cpp \
src/shared/socket/Socket.cpp \
src/shared/filesystem/PathName.cpp \
src/shared/filesystem/allegro5/Al5PathName.cpp \
src/shared/filesystem/FSHandler.cpp \
src/shared/filesystem/allegro5/Al5FSHandler.cpp \
src/hotseat/gui/PlayerSwitchMenu.cpp \
src/localgame/gui/StartGameMenu.cpp \
src/localgame/LocalGame.cpp \
src/hotseat/HotSeat.cpp \
src/lobby/gui/ConfigMenu.cpp \
src/lobby/gui/MainMenu.cpp \
src/lobby/gui/QuitMenu.cpp \
src/lobby/Lobby.cpp \
src/editor/Editor.cpp \
src/editor/gui/EditorMainMenu.cpp \
src/shared/RunMode.cpp \
src/shared/filesystem/MapLoader.cpp \
src/shared/filesystem/allegro5/Al5MapLoader.cpp \
src/shared/gui/BasicUserInterface.cpp \
src/shared/gui/IE.cpp \
src/shared/gui/GraphicSet.cpp \
src/shared/gui/Menu.cpp \
src/shared/gui/UI.cpp \
src/shared/gui/UIEngine.cpp \
src/shared/gui/MenuItem.cpp \
src/shared/gui/UIMenu.cpp \
src/shared/gui/allegro5/Al5BasicUserInterface.cpp \
src/shared/gui/allegro5/Al5UIMenu.cpp \
src/shared/gui/allegro5/Al5UI.cpp \
src/shared/gui/allegro5/Al5UIEngine.cpp \
src/shared/gui/allegro5/Al5GraphicSet.cpp \
src/shared/gui/Engine.cpp \
src/server/Server.cpp \
src/client/gui/PlayerLooseMenu.cpp \
src/client/gui/ClientMainMenu.cpp \
src/client/Client.cpp \
src/client/SinglePlayer.cpp \
\
src/hexwars.cpp \
src/dedicated-server.cpp \
src/shared/socket/Socket-Test.cpp \
src/shared/filesystem/MapLoader-Test.cpp \
src/shared/filesystem/FSHandler-Test.cpp \
src/shared/definitions/Coordinates-Test.cpp \
src/shared/units/Unit-Fighting-Test.cpp \
src/shared/gui/BasicUserInterface-Test.cpp \
src/shared/gui/UIEngine-Test.cpp \
src/shared/gui/MenuItem-Test.cpp \
src/shared/filesystem/PathName-Test.cpp
|