QTfrontend/hedgewars.pro
author unc0rr
Fri, 27 Oct 2006 22:07:38 +0000
changeset 208 a049157d673a
parent 187 96c3154efee5
child 221 0f451dae4251
permissions -rw-r--r--
Implement Knowledge Base for libs/compilers bugs
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
21
dff476dcaaa3 - Many improvements to frontend
unc0rr
parents:
diff changeset
     1
TEMPLATE = app
52
ae2950c5465c - Rename frontend to hedgewars and compile it to engine directory
unc0rr
parents: 50
diff changeset
     2
TARGET = hedgewars
21
dff476dcaaa3 - Many improvements to frontend
unc0rr
parents:
diff changeset
     3
DEPENDPATH += .
dff476dcaaa3 - Many improvements to frontend
unc0rr
parents:
diff changeset
     4
INCLUDEPATH += .
97
e7c1df9cce2c - make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents: 93
diff changeset
     5
DESTDIR	= ../bin
52
ae2950c5465c - Rename frontend to hedgewars and compile it to engine directory
unc0rr
parents: 50
diff changeset
     6
ae2950c5465c - Rename frontend to hedgewars and compile it to engine directory
unc0rr
parents: 50
diff changeset
     7
win32 {
ae2950c5465c - Rename frontend to hedgewars and compile it to engine directory
unc0rr
parents: 50
diff changeset
     8
	RC_FILE	= ./res/hedgewars.rc
ae2950c5465c - Rename frontend to hedgewars and compile it to engine directory
unc0rr
parents: 50
diff changeset
     9
}
21
dff476dcaaa3 - Many improvements to frontend
unc0rr
parents:
diff changeset
    10
dff476dcaaa3 - Many improvements to frontend
unc0rr
parents:
diff changeset
    11
QT += network
dff476dcaaa3 - Many improvements to frontend
unc0rr
parents:
diff changeset
    12
52
ae2950c5465c - Rename frontend to hedgewars and compile it to engine directory
unc0rr
parents: 50
diff changeset
    13
HEADERS += binds.h \
ae2950c5465c - Rename frontend to hedgewars and compile it to engine directory
unc0rr
parents: 50
diff changeset
    14
           game.h \
ae2950c5465c - Rename frontend to hedgewars and compile it to engine directory
unc0rr
parents: 50
diff changeset
    15
           hwform.h \
ae2950c5465c - Rename frontend to hedgewars and compile it to engine directory
unc0rr
parents: 50
diff changeset
    16
           sdlkeys.h \
ae2950c5465c - Rename frontend to hedgewars and compile it to engine directory
unc0rr
parents: 50
diff changeset
    17
           team.h \
ae2950c5465c - Rename frontend to hedgewars and compile it to engine directory
unc0rr
parents: 50
diff changeset
    18
           netclient.h \
ae2950c5465c - Rename frontend to hedgewars and compile it to engine directory
unc0rr
parents: 50
diff changeset
    19
           teamselect.h \
63
27e2b5bb6d4b Scroll added to team control widget
displacer
parents: 52
diff changeset
    20
           teamselhelper.h \
27e2b5bb6d4b Scroll added to team control widget
displacer
parents: 52
diff changeset
    21
           frameTeam.h \
84
0f6669da2fcb Start rewrite ui
unc0rr
parents: 63
diff changeset
    22
           vertScrollArea.h \
85
44d9045b26ff New GameCFGWidget. Now it's possible to set forts mode from ui
unc0rr
parents: 84
diff changeset
    23
           gameuiconfig.h \
44d9045b26ff New GameCFGWidget. Now it's possible to set forts mode from ui
unc0rr
parents: 84
diff changeset
    24
           ui_hwform.h \
86
664b536a1c27 Predefined teams, 'simple game' doesn't need to create team
unc0rr
parents: 85
diff changeset
    25
           gamecfgwidget.h \
87
ff213e443336 Convert all pages to classes
unc0rr
parents: 86
diff changeset
    26
           predefteams.h \
93
c21ff3af56cf - small fix to translation
unc0rr
parents: 87
diff changeset
    27
           pages.h \
132
2d0f404cdf05 first hedgehogs number selection added
displacer
parents: 127
diff changeset
    28
           SquareLabel.h \
164
92cff18a3ab6 first map preview added (still experimental)
displacer
parents: 132
diff changeset
    29
           hedgehogerWidget.h \
92cff18a3ab6 first map preview added (still experimental)
displacer
parents: 132
diff changeset
    30
           hwmap.h \
177
c67c15e6fae3 prepare uniting tcp classes
displacer
parents: 164
diff changeset
    31
           mapContainer.h \
187
96c3154efee5 "About" page, not yet filled with content
unc0rr
parents: 177
diff changeset
    32
           tcpBase.h \
208
a049157d673a Implement Knowledge Base for libs/compilers bugs
unc0rr
parents: 187
diff changeset
    33
           about.h \
a049157d673a Implement Knowledge Base for libs/compilers bugs
unc0rr
parents: 187
diff changeset
    34
           KB.h
52
ae2950c5465c - Rename frontend to hedgewars and compile it to engine directory
unc0rr
parents: 50
diff changeset
    35
           
ae2950c5465c - Rename frontend to hedgewars and compile it to engine directory
unc0rr
parents: 50
diff changeset
    36
SOURCES += game.cpp \
ae2950c5465c - Rename frontend to hedgewars and compile it to engine directory
unc0rr
parents: 50
diff changeset
    37
           main.cpp \
ae2950c5465c - Rename frontend to hedgewars and compile it to engine directory
unc0rr
parents: 50
diff changeset
    38
           hwform.cpp \
ae2950c5465c - Rename frontend to hedgewars and compile it to engine directory
unc0rr
parents: 50
diff changeset
    39
           team.cpp \
ae2950c5465c - Rename frontend to hedgewars and compile it to engine directory
unc0rr
parents: 50
diff changeset
    40
           netclient.cpp \
ae2950c5465c - Rename frontend to hedgewars and compile it to engine directory
unc0rr
parents: 50
diff changeset
    41
           teamselect.cpp \
63
27e2b5bb6d4b Scroll added to team control widget
displacer
parents: 52
diff changeset
    42
           teamselhelper.cpp \
27e2b5bb6d4b Scroll added to team control widget
displacer
parents: 52
diff changeset
    43
           frameTeam.cpp \
84
0f6669da2fcb Start rewrite ui
unc0rr
parents: 63
diff changeset
    44
           vertScrollArea.cpp \
85
44d9045b26ff New GameCFGWidget. Now it's possible to set forts mode from ui
unc0rr
parents: 84
diff changeset
    45
           gameuiconfig.cpp \
44d9045b26ff New GameCFGWidget. Now it's possible to set forts mode from ui
unc0rr
parents: 84
diff changeset
    46
           ui_hwform.cpp \
87
ff213e443336 Convert all pages to classes
unc0rr
parents: 86
diff changeset
    47
           gamecfgwidget.cpp \
93
c21ff3af56cf - small fix to translation
unc0rr
parents: 87
diff changeset
    48
           pages.cpp \
132
2d0f404cdf05 first hedgehogs number selection added
displacer
parents: 127
diff changeset
    49
           SquareLabel.cpp \
164
92cff18a3ab6 first map preview added (still experimental)
displacer
parents: 132
diff changeset
    50
           hedgehogerWidget.cpp \
92cff18a3ab6 first map preview added (still experimental)
displacer
parents: 132
diff changeset
    51
           hwmap.cpp \
177
c67c15e6fae3 prepare uniting tcp classes
displacer
parents: 164
diff changeset
    52
           mapContainer.cpp \
187
96c3154efee5 "About" page, not yet filled with content
unc0rr
parents: 177
diff changeset
    53
           tcpBase.cpp \
96c3154efee5 "About" page, not yet filled with content
unc0rr
parents: 177
diff changeset
    54
           about.cpp
52
ae2950c5465c - Rename frontend to hedgewars and compile it to engine directory
unc0rr
parents: 50
diff changeset
    55
ae2950c5465c - Rename frontend to hedgewars and compile it to engine directory
unc0rr
parents: 50
diff changeset
    56
TRANSLATIONS += translations/hedgewars_ru.ts
ae2950c5465c - Rename frontend to hedgewars and compile it to engine directory
unc0rr
parents: 50
diff changeset
    57
63
27e2b5bb6d4b Scroll added to team control widget
displacer
parents: 52
diff changeset
    58
RESOURCES += hedgewars.qrc