project_files/hedgewars.pro
author Xeli
Fri, 16 Sep 2011 20:39:14 +0200
branchhedgeroid
changeset 5938 c186c454779d
parent 5755 a079b4dea081
child 6063 d4539514088a
permissions -rw-r--r--
isOnCurrentHog and isOnCrosshair now look at the distance relative to the screen rather than world coords, this means that zooming out doesn't make it harder to touch the hog or crosshair
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2522
42986b9ebc74 moves project files to proper directory
koda
parents:
diff changeset
     1
TEMPLATE = app
42986b9ebc74 moves project files to proper directory
koda
parents:
diff changeset
     2
TARGET = hedgewars
42986b9ebc74 moves project files to proper directory
koda
parents:
diff changeset
     3
DEPENDPATH += ../QTfrontend/
42986b9ebc74 moves project files to proper directory
koda
parents:
diff changeset
     4
INCLUDEPATH += ../QTfrontend/
4878
c310bab60b94 Update frontend's project file
unc0rr
parents: 4707
diff changeset
     5
INCLUDEPATH += /usr/local/include/SDL
5268
eedc0f8ed38b Small stub web view that I'm hoping to use in conjunction with ~/.hedgewars/Data - I'd like to link to a page on hedgewars.org, intercept linkClicked, fetch zip files, then unpack the structure under Data. Just checking this in so it doesn't clutter up project. Also tidied up the .pro a bit, even though we aren't really using it for much anymore. Should in theory be able to do a build now.
nemo
parents: 5094
diff changeset
     6
INCLUDEPATH += /usr/include/SDL
5754
583b7a683b17 - Implement progressbars to show download progress
unc0rr
parents: 5620
diff changeset
     7
INCLUDEPATH += ../misc/quazip/
4878
c310bab60b94 Update frontend's project file
unc0rr
parents: 4707
diff changeset
     8
2522
42986b9ebc74 moves project files to proper directory
koda
parents:
diff changeset
     9
DESTDIR = .
42986b9ebc74 moves project files to proper directory
koda
parents:
diff changeset
    10
42986b9ebc74 moves project files to proper directory
koda
parents:
diff changeset
    11
win32 {
42986b9ebc74 moves project files to proper directory
koda
parents:
diff changeset
    12
	RC_FILE	= ../QTfrontend/res/hedgewars.rc
42986b9ebc74 moves project files to proper directory
koda
parents:
diff changeset
    13
}
42986b9ebc74 moves project files to proper directory
koda
parents:
diff changeset
    14
2525
e6cdc0251cd1 remove the svg dependency
koda
parents: 2523
diff changeset
    15
QT += network
5268
eedc0f8ed38b Small stub web view that I'm hoping to use in conjunction with ~/.hedgewars/Data - I'd like to link to a page on hedgewars.org, intercept linkClicked, fetch zip files, then unpack the structure under Data. Just checking this in so it doesn't clutter up project. Also tidied up the .pro a bit, even though we aren't really using it for much anymore. Should in theory be able to do a build now.
nemo
parents: 5094
diff changeset
    16
QT += webkit
2522
42986b9ebc74 moves project files to proper directory
koda
parents:
diff changeset
    17
2546
5fa4aa6bb804 fix mac bundle
koda
parents: 2545
diff changeset
    18
HEADERS += ../QTfrontend/KB.h ../QTfrontend/SDLs.h \
5fa4aa6bb804 fix mac bundle
koda
parents: 2545
diff changeset
    19
	../QTfrontend/SquareLabel.h ../QTfrontend/about.h \
5fa4aa6bb804 fix mac bundle
koda
parents: 2545
diff changeset
    20
	../QTfrontend/ammoSchemeModel.h ../QTfrontend/bgwidget.h \
5fa4aa6bb804 fix mac bundle
koda
parents: 2545
diff changeset
    21
	../QTfrontend/binds.h ../QTfrontend/chatwidget.h \
5fa4aa6bb804 fix mac bundle
koda
parents: 2545
diff changeset
    22
	../QTfrontend/fpsedit.h ../QTfrontend/frameTeam.h \
5fa4aa6bb804 fix mac bundle
koda
parents: 2545
diff changeset
    23
	../QTfrontend/game.h ../QTfrontend/gamecfgwidget.h \
5fa4aa6bb804 fix mac bundle
koda
parents: 2545
diff changeset
    24
	../QTfrontend/gameuiconfig.h ../QTfrontend/hats.h \
5fa4aa6bb804 fix mac bundle
koda
parents: 2545
diff changeset
    25
	../QTfrontend/hedgehogerWidget.h ../QTfrontend/hwconsts.h \
5fa4aa6bb804 fix mac bundle
koda
parents: 2545
diff changeset
    26
	../QTfrontend/hwform.h ../QTfrontend/hwmap.h \
5fa4aa6bb804 fix mac bundle
koda
parents: 2545
diff changeset
    27
	../QTfrontend/igbox.h ../QTfrontend/input_ip.h \
5fa4aa6bb804 fix mac bundle
koda
parents: 2545
diff changeset
    28
	../QTfrontend/itemNum.h ../QTfrontend/mapContainer.h \
5fa4aa6bb804 fix mac bundle
koda
parents: 2545
diff changeset
    29
	../QTfrontend/misc.h ../QTfrontend/namegen.h \
5268
eedc0f8ed38b Small stub web view that I'm hoping to use in conjunction with ~/.hedgewars/Data - I'd like to link to a page on hedgewars.org, intercept linkClicked, fetch zip files, then unpack the structure under Data. Just checking this in so it doesn't clutter up project. Also tidied up the .pro a bit, even though we aren't really using it for much anymore. Should in theory be able to do a build now.
nemo
parents: 5094
diff changeset
    30
    ../QTfrontend/netregister.h ../QTfrontend/netserver.h \
2546
5fa4aa6bb804 fix mac bundle
koda
parents: 2545
diff changeset
    31
	../QTfrontend/netserverslist.h ../QTfrontend/netudpserver.h \
5fa4aa6bb804 fix mac bundle
koda
parents: 2545
diff changeset
    32
	../QTfrontend/netudpwidget.h ../QTfrontend/newnetclient.h \
5268
eedc0f8ed38b Small stub web view that I'm hoping to use in conjunction with ~/.hedgewars/Data - I'd like to link to a page on hedgewars.org, intercept linkClicked, fetch zip files, then unpack the structure under Data. Just checking this in so it doesn't clutter up project. Also tidied up the .pro a bit, even though we aren't really using it for much anymore. Should in theory be able to do a build now.
nemo
parents: 5094
diff changeset
    33
    ../QTfrontend/proto.h \
2546
5fa4aa6bb804 fix mac bundle
koda
parents: 2545
diff changeset
    34
	../QTfrontend/sdlkeys.h ../QTfrontend/selectWeapon.h \
5268
eedc0f8ed38b Small stub web view that I'm hoping to use in conjunction with ~/.hedgewars/Data - I'd like to link to a page on hedgewars.org, intercept linkClicked, fetch zip files, then unpack the structure under Data. Just checking this in so it doesn't clutter up project. Also tidied up the .pro a bit, even though we aren't really using it for much anymore. Should in theory be able to do a build now.
nemo
parents: 5094
diff changeset
    35
	../QTfrontend/tcpBase.h \
2546
5fa4aa6bb804 fix mac bundle
koda
parents: 2545
diff changeset
    36
	../QTfrontend/team.h ../QTfrontend/teamselect.h \
5fa4aa6bb804 fix mac bundle
koda
parents: 2545
diff changeset
    37
	../QTfrontend/teamselhelper.h ../QTfrontend/togglebutton.h \
5fa4aa6bb804 fix mac bundle
koda
parents: 2545
diff changeset
    38
	../QTfrontend/ui_hwform.h ../QTfrontend/vertScrollArea.h \
3344
b18a166e6ca4 Frontend:
smxx
parents: 3285
diff changeset
    39
	../QTfrontend/weaponItem.h ../QTfrontend/xfire.h \
4878
c310bab60b94 Update frontend's project file
unc0rr
parents: 4707
diff changeset
    40
	../QTfrontend/achievements.h \
c310bab60b94 Update frontend's project file
unc0rr
parents: 4707
diff changeset
    41
    ../QTfrontend/drawmapwidget.h \
c310bab60b94 Update frontend's project file
unc0rr
parents: 4707
diff changeset
    42
    ../QTfrontend/drawmapscene.h \
5268
eedc0f8ed38b Small stub web view that I'm hoping to use in conjunction with ~/.hedgewars/Data - I'd like to link to a page on hedgewars.org, intercept linkClicked, fetch zip files, then unpack the structure under Data. Just checking this in so it doesn't clutter up project. Also tidied up the .pro a bit, even though we aren't really using it for much anymore. Should in theory be able to do a build now.
nemo
parents: 5094
diff changeset
    43
    ../QTfrontend/qaspectratiolayout.h \
eedc0f8ed38b Small stub web view that I'm hoping to use in conjunction with ~/.hedgewars/Data - I'd like to link to a page on hedgewars.org, intercept linkClicked, fetch zip files, then unpack the structure under Data. Just checking this in so it doesn't clutter up project. Also tidied up the .pro a bit, even though we aren't really using it for much anymore. Should in theory be able to do a build now.
nemo
parents: 5094
diff changeset
    44
    ../QTfrontend/pagetraining.h \
eedc0f8ed38b Small stub web view that I'm hoping to use in conjunction with ~/.hedgewars/Data - I'd like to link to a page on hedgewars.org, intercept linkClicked, fetch zip files, then unpack the structure under Data. Just checking this in so it doesn't clutter up project. Also tidied up the .pro a bit, even though we aren't really using it for much anymore. Should in theory be able to do a build now.
nemo
parents: 5094
diff changeset
    45
    ../QTfrontend/pagesingleplayer.h \
eedc0f8ed38b Small stub web view that I'm hoping to use in conjunction with ~/.hedgewars/Data - I'd like to link to a page on hedgewars.org, intercept linkClicked, fetch zip files, then unpack the structure under Data. Just checking this in so it doesn't clutter up project. Also tidied up the .pro a bit, even though we aren't really using it for much anymore. Should in theory be able to do a build now.
nemo
parents: 5094
diff changeset
    46
    ../QTfrontend/pageselectweapon.h \
eedc0f8ed38b Small stub web view that I'm hoping to use in conjunction with ~/.hedgewars/Data - I'd like to link to a page on hedgewars.org, intercept linkClicked, fetch zip files, then unpack the structure under Data. Just checking this in so it doesn't clutter up project. Also tidied up the .pro a bit, even though we aren't really using it for much anymore. Should in theory be able to do a build now.
nemo
parents: 5094
diff changeset
    47
    ../QTfrontend/pagescheme.h \
eedc0f8ed38b Small stub web view that I'm hoping to use in conjunction with ~/.hedgewars/Data - I'd like to link to a page on hedgewars.org, intercept linkClicked, fetch zip files, then unpack the structure under Data. Just checking this in so it doesn't clutter up project. Also tidied up the .pro a bit, even though we aren't really using it for much anymore. Should in theory be able to do a build now.
nemo
parents: 5094
diff changeset
    48
    ../QTfrontend/pageroomslist.h \
eedc0f8ed38b Small stub web view that I'm hoping to use in conjunction with ~/.hedgewars/Data - I'd like to link to a page on hedgewars.org, intercept linkClicked, fetch zip files, then unpack the structure under Data. Just checking this in so it doesn't clutter up project. Also tidied up the .pro a bit, even though we aren't really using it for much anymore. Should in theory be able to do a build now.
nemo
parents: 5094
diff changeset
    49
    ../QTfrontend/pageoptions.h \
eedc0f8ed38b Small stub web view that I'm hoping to use in conjunction with ~/.hedgewars/Data - I'd like to link to a page on hedgewars.org, intercept linkClicked, fetch zip files, then unpack the structure under Data. Just checking this in so it doesn't clutter up project. Also tidied up the .pro a bit, even though we aren't really using it for much anymore. Should in theory be able to do a build now.
nemo
parents: 5094
diff changeset
    50
    ../QTfrontend/pagenettype.h \
eedc0f8ed38b Small stub web view that I'm hoping to use in conjunction with ~/.hedgewars/Data - I'd like to link to a page on hedgewars.org, intercept linkClicked, fetch zip files, then unpack the structure under Data. Just checking this in so it doesn't clutter up project. Also tidied up the .pro a bit, even though we aren't really using it for much anymore. Should in theory be able to do a build now.
nemo
parents: 5094
diff changeset
    51
    ../QTfrontend/pagenetserver.h \
eedc0f8ed38b Small stub web view that I'm hoping to use in conjunction with ~/.hedgewars/Data - I'd like to link to a page on hedgewars.org, intercept linkClicked, fetch zip files, then unpack the structure under Data. Just checking this in so it doesn't clutter up project. Also tidied up the .pro a bit, even though we aren't really using it for much anymore. Should in theory be able to do a build now.
nemo
parents: 5094
diff changeset
    52
    ../QTfrontend/pagenetgame.h \
eedc0f8ed38b Small stub web view that I'm hoping to use in conjunction with ~/.hedgewars/Data - I'd like to link to a page on hedgewars.org, intercept linkClicked, fetch zip files, then unpack the structure under Data. Just checking this in so it doesn't clutter up project. Also tidied up the .pro a bit, even though we aren't really using it for much anymore. Should in theory be able to do a build now.
nemo
parents: 5094
diff changeset
    53
    ../QTfrontend/pagenet.h \
eedc0f8ed38b Small stub web view that I'm hoping to use in conjunction with ~/.hedgewars/Data - I'd like to link to a page on hedgewars.org, intercept linkClicked, fetch zip files, then unpack the structure under Data. Just checking this in so it doesn't clutter up project. Also tidied up the .pro a bit, even though we aren't really using it for much anymore. Should in theory be able to do a build now.
nemo
parents: 5094
diff changeset
    54
    ../QTfrontend/pagemultiplayer.h \
eedc0f8ed38b Small stub web view that I'm hoping to use in conjunction with ~/.hedgewars/Data - I'd like to link to a page on hedgewars.org, intercept linkClicked, fetch zip files, then unpack the structure under Data. Just checking this in so it doesn't clutter up project. Also tidied up the .pro a bit, even though we aren't really using it for much anymore. Should in theory be able to do a build now.
nemo
parents: 5094
diff changeset
    55
    ../QTfrontend/pagemain.h \
eedc0f8ed38b Small stub web view that I'm hoping to use in conjunction with ~/.hedgewars/Data - I'd like to link to a page on hedgewars.org, intercept linkClicked, fetch zip files, then unpack the structure under Data. Just checking this in so it doesn't clutter up project. Also tidied up the .pro a bit, even though we aren't really using it for much anymore. Should in theory be able to do a build now.
nemo
parents: 5094
diff changeset
    56
    ../QTfrontend/pageingame.h \
eedc0f8ed38b Small stub web view that I'm hoping to use in conjunction with ~/.hedgewars/Data - I'd like to link to a page on hedgewars.org, intercept linkClicked, fetch zip files, then unpack the structure under Data. Just checking this in so it doesn't clutter up project. Also tidied up the .pro a bit, even though we aren't really using it for much anymore. Should in theory be able to do a build now.
nemo
parents: 5094
diff changeset
    57
    ../QTfrontend/pageinfo.h \
eedc0f8ed38b Small stub web view that I'm hoping to use in conjunction with ~/.hedgewars/Data - I'd like to link to a page on hedgewars.org, intercept linkClicked, fetch zip files, then unpack the structure under Data. Just checking this in so it doesn't clutter up project. Also tidied up the .pro a bit, even though we aren't really using it for much anymore. Should in theory be able to do a build now.
nemo
parents: 5094
diff changeset
    58
    ../QTfrontend/pagedata.h \
eedc0f8ed38b Small stub web view that I'm hoping to use in conjunction with ~/.hedgewars/Data - I'd like to link to a page on hedgewars.org, intercept linkClicked, fetch zip files, then unpack the structure under Data. Just checking this in so it doesn't clutter up project. Also tidied up the .pro a bit, even though we aren't really using it for much anymore. Should in theory be able to do a build now.
nemo
parents: 5094
diff changeset
    59
    ../QTfrontend/pageeditteam.h \
eedc0f8ed38b Small stub web view that I'm hoping to use in conjunction with ~/.hedgewars/Data - I'd like to link to a page on hedgewars.org, intercept linkClicked, fetch zip files, then unpack the structure under Data. Just checking this in so it doesn't clutter up project. Also tidied up the .pro a bit, even though we aren't really using it for much anymore. Should in theory be able to do a build now.
nemo
parents: 5094
diff changeset
    60
    ../QTfrontend/pagedrawmap.h \
eedc0f8ed38b Small stub web view that I'm hoping to use in conjunction with ~/.hedgewars/Data - I'd like to link to a page on hedgewars.org, intercept linkClicked, fetch zip files, then unpack the structure under Data. Just checking this in so it doesn't clutter up project. Also tidied up the .pro a bit, even though we aren't really using it for much anymore. Should in theory be able to do a build now.
nemo
parents: 5094
diff changeset
    61
    ../QTfrontend/pageconnecting.h \
eedc0f8ed38b Small stub web view that I'm hoping to use in conjunction with ~/.hedgewars/Data - I'd like to link to a page on hedgewars.org, intercept linkClicked, fetch zip files, then unpack the structure under Data. Just checking this in so it doesn't clutter up project. Also tidied up the .pro a bit, even though we aren't really using it for much anymore. Should in theory be able to do a build now.
nemo
parents: 5094
diff changeset
    62
    ../QTfrontend/pagecampaign.h \
5289
9d18b61bd3eb - Implement ThemesModel (load theme icons once, store in memory, don't reload from disk every time selection changes)
unc0rr
parents: 5268
diff changeset
    63
    ../QTfrontend/pageadmin.h \
9d18b61bd3eb - Implement ThemesModel (load theme icons once, store in memory, don't reload from disk every time selection changes)
unc0rr
parents: 5268
diff changeset
    64
    ../QTfrontend/pageplayrecord.h \
9d18b61bd3eb - Implement ThemesModel (load theme icons once, store in memory, don't reload from disk every time selection changes)
unc0rr
parents: 5268
diff changeset
    65
    ../QTfrontend/pagegamestats.h \
9d18b61bd3eb - Implement ThemesModel (load theme icons once, store in memory, don't reload from disk every time selection changes)
unc0rr
parents: 5268
diff changeset
    66
    ../QTfrontend/HWApplication.h \
9d18b61bd3eb - Implement ThemesModel (load theme icons once, store in memory, don't reload from disk every time selection changes)
unc0rr
parents: 5268
diff changeset
    67
    ../QTfrontend/AbstractPage.h \
5755
a079b4dea081 Implement DataBrowser which downloads resources (images, css) on its own.
unc0rr
parents: 5754
diff changeset
    68
    ../QTfrontend/themesmodel.h \
a079b4dea081 Implement DataBrowser which downloads resources (images, css) on its own.
unc0rr
parents: 5754
diff changeset
    69
    ../QTfrontend/databrowser.h
2543
bf1da5037433 - lupdate && lrelease
unc0rr
parents: 2525
diff changeset
    70
2545
853fa5312886 update .pro file, lupdate and smaller italian translation
koda
parents: 2543
diff changeset
    71
SOURCES += ../QTfrontend/SDLs.cpp ../QTfrontend/SquareLabel.cpp \
853fa5312886 update .pro file, lupdate and smaller italian translation
koda
parents: 2543
diff changeset
    72
	../QTfrontend/about.cpp ../QTfrontend/ammoSchemeModel.cpp \
853fa5312886 update .pro file, lupdate and smaller italian translation
koda
parents: 2543
diff changeset
    73
	../QTfrontend/bgwidget.cpp ../QTfrontend/binds.cpp \
853fa5312886 update .pro file, lupdate and smaller italian translation
koda
parents: 2543
diff changeset
    74
	../QTfrontend/chatwidget.cpp ../QTfrontend/fpsedit.cpp \
853fa5312886 update .pro file, lupdate and smaller italian translation
koda
parents: 2543
diff changeset
    75
	../QTfrontend/frameTeam.cpp ../QTfrontend/game.cpp \
853fa5312886 update .pro file, lupdate and smaller italian translation
koda
parents: 2543
diff changeset
    76
	../QTfrontend/gamecfgwidget.cpp ../QTfrontend/gameuiconfig.cpp \
853fa5312886 update .pro file, lupdate and smaller italian translation
koda
parents: 2543
diff changeset
    77
	../QTfrontend/hats.cpp ../QTfrontend/hedgehogerWidget.cpp \
853fa5312886 update .pro file, lupdate and smaller italian translation
koda
parents: 2543
diff changeset
    78
	../QTfrontend/hwform.cpp ../QTfrontend/hwmap.cpp \
853fa5312886 update .pro file, lupdate and smaller italian translation
koda
parents: 2543
diff changeset
    79
	../QTfrontend/igbox.cpp ../QTfrontend/input_ip.cpp \
853fa5312886 update .pro file, lupdate and smaller italian translation
koda
parents: 2543
diff changeset
    80
	../QTfrontend/itemNum.cpp ../QTfrontend/main.cpp \
853fa5312886 update .pro file, lupdate and smaller italian translation
koda
parents: 2543
diff changeset
    81
	../QTfrontend/mapContainer.cpp ../QTfrontend/misc.cpp \
853fa5312886 update .pro file, lupdate and smaller italian translation
koda
parents: 2543
diff changeset
    82
	../QTfrontend/namegen.cpp ../QTfrontend/netregister.cpp \
853fa5312886 update .pro file, lupdate and smaller italian translation
koda
parents: 2543
diff changeset
    83
	../QTfrontend/netserver.cpp ../QTfrontend/netserverslist.cpp \
853fa5312886 update .pro file, lupdate and smaller italian translation
koda
parents: 2543
diff changeset
    84
	../QTfrontend/netudpserver.cpp ../QTfrontend/netudpwidget.cpp \
5268
eedc0f8ed38b Small stub web view that I'm hoping to use in conjunction with ~/.hedgewars/Data - I'd like to link to a page on hedgewars.org, intercept linkClicked, fetch zip files, then unpack the structure under Data. Just checking this in so it doesn't clutter up project. Also tidied up the .pro a bit, even though we aren't really using it for much anymore. Should in theory be able to do a build now.
nemo
parents: 5094
diff changeset
    85
    ../QTfrontend/newnetclient.cpp \
eedc0f8ed38b Small stub web view that I'm hoping to use in conjunction with ~/.hedgewars/Data - I'd like to link to a page on hedgewars.org, intercept linkClicked, fetch zip files, then unpack the structure under Data. Just checking this in so it doesn't clutter up project. Also tidied up the .pro a bit, even though we aren't really using it for much anymore. Should in theory be able to do a build now.
nemo
parents: 5094
diff changeset
    86
	../QTfrontend/proto.cpp \
eedc0f8ed38b Small stub web view that I'm hoping to use in conjunction with ~/.hedgewars/Data - I'd like to link to a page on hedgewars.org, intercept linkClicked, fetch zip files, then unpack the structure under Data. Just checking this in so it doesn't clutter up project. Also tidied up the .pro a bit, even though we aren't really using it for much anymore. Should in theory be able to do a build now.
nemo
parents: 5094
diff changeset
    87
	../QTfrontend/selectWeapon.cpp \
2545
853fa5312886 update .pro file, lupdate and smaller italian translation
koda
parents: 2543
diff changeset
    88
	../QTfrontend/tcpBase.cpp ../QTfrontend/team.cpp \
853fa5312886 update .pro file, lupdate and smaller italian translation
koda
parents: 2543
diff changeset
    89
	../QTfrontend/teamselect.cpp ../QTfrontend/teamselhelper.cpp \
853fa5312886 update .pro file, lupdate and smaller italian translation
koda
parents: 2543
diff changeset
    90
	../QTfrontend/togglebutton.cpp ../QTfrontend/ui_hwform.cpp \
853fa5312886 update .pro file, lupdate and smaller italian translation
koda
parents: 2543
diff changeset
    91
	../QTfrontend/vertScrollArea.cpp ../QTfrontend/weaponItem.cpp \
4878
c310bab60b94 Update frontend's project file
unc0rr
parents: 4707
diff changeset
    92
	../QTfrontend/achievements.cpp \
c310bab60b94 Update frontend's project file
unc0rr
parents: 4707
diff changeset
    93
    ../QTfrontend/hwconsts.cpp \
c310bab60b94 Update frontend's project file
unc0rr
parents: 4707
diff changeset
    94
    ../QTfrontend/drawmapwidget.cpp \
c310bab60b94 Update frontend's project file
unc0rr
parents: 4707
diff changeset
    95
    ../QTfrontend/drawmapscene.cpp \
5094
9c3553254100 - Update .pro file
unc0rr
parents: 4878
diff changeset
    96
    ../QTfrontend/qaspectratiolayout.cpp \
9c3553254100 - Update .pro file
unc0rr
parents: 4878
diff changeset
    97
    ../QTfrontend/pagetraining.cpp \
9c3553254100 - Update .pro file
unc0rr
parents: 4878
diff changeset
    98
    ../QTfrontend/pagesingleplayer.cpp \
9c3553254100 - Update .pro file
unc0rr
parents: 4878
diff changeset
    99
    ../QTfrontend/pageselectweapon.cpp \
9c3553254100 - Update .pro file
unc0rr
parents: 4878
diff changeset
   100
    ../QTfrontend/pagescheme.cpp \
9c3553254100 - Update .pro file
unc0rr
parents: 4878
diff changeset
   101
    ../QTfrontend/pageroomslist.cpp \
9c3553254100 - Update .pro file
unc0rr
parents: 4878
diff changeset
   102
    ../QTfrontend/pageoptions.cpp \
9c3553254100 - Update .pro file
unc0rr
parents: 4878
diff changeset
   103
    ../QTfrontend/pagenettype.cpp \
9c3553254100 - Update .pro file
unc0rr
parents: 4878
diff changeset
   104
    ../QTfrontend/pagenetserver.cpp \
9c3553254100 - Update .pro file
unc0rr
parents: 4878
diff changeset
   105
    ../QTfrontend/pagenetgame.cpp \
9c3553254100 - Update .pro file
unc0rr
parents: 4878
diff changeset
   106
    ../QTfrontend/pagenet.cpp \
9c3553254100 - Update .pro file
unc0rr
parents: 4878
diff changeset
   107
    ../QTfrontend/pagemultiplayer.cpp \
9c3553254100 - Update .pro file
unc0rr
parents: 4878
diff changeset
   108
    ../QTfrontend/pagemain.cpp \
9c3553254100 - Update .pro file
unc0rr
parents: 4878
diff changeset
   109
    ../QTfrontend/pageingame.cpp \
9c3553254100 - Update .pro file
unc0rr
parents: 4878
diff changeset
   110
    ../QTfrontend/pageinfo.cpp \
5268
eedc0f8ed38b Small stub web view that I'm hoping to use in conjunction with ~/.hedgewars/Data - I'd like to link to a page on hedgewars.org, intercept linkClicked, fetch zip files, then unpack the structure under Data. Just checking this in so it doesn't clutter up project. Also tidied up the .pro a bit, even though we aren't really using it for much anymore. Should in theory be able to do a build now.
nemo
parents: 5094
diff changeset
   111
    ../QTfrontend/pagedata.cpp \
5094
9c3553254100 - Update .pro file
unc0rr
parents: 4878
diff changeset
   112
    ../QTfrontend/pageeditteam.cpp \
9c3553254100 - Update .pro file
unc0rr
parents: 4878
diff changeset
   113
    ../QTfrontend/pagedrawmap.cpp \
9c3553254100 - Update .pro file
unc0rr
parents: 4878
diff changeset
   114
    ../QTfrontend/pageconnecting.cpp \
9c3553254100 - Update .pro file
unc0rr
parents: 4878
diff changeset
   115
    ../QTfrontend/pagecampaign.cpp \
5289
9d18b61bd3eb - Implement ThemesModel (load theme icons once, store in memory, don't reload from disk every time selection changes)
unc0rr
parents: 5268
diff changeset
   116
    ../QTfrontend/pageadmin.cpp \
9d18b61bd3eb - Implement ThemesModel (load theme icons once, store in memory, don't reload from disk every time selection changes)
unc0rr
parents: 5268
diff changeset
   117
    ../QTfrontend/pagegamestats.cpp \
9d18b61bd3eb - Implement ThemesModel (load theme icons once, store in memory, don't reload from disk every time selection changes)
unc0rr
parents: 5268
diff changeset
   118
    ../QTfrontend/pageplayrecord.cpp \
9d18b61bd3eb - Implement ThemesModel (load theme icons once, store in memory, don't reload from disk every time selection changes)
unc0rr
parents: 5268
diff changeset
   119
    ../QTfrontend/HWApplication.cpp \
5755
a079b4dea081 Implement DataBrowser which downloads resources (images, css) on its own.
unc0rr
parents: 5754
diff changeset
   120
    ../QTfrontend/themesmodel.cpp \
a079b4dea081 Implement DataBrowser which downloads resources (images, css) on its own.
unc0rr
parents: 5754
diff changeset
   121
    ../QTfrontend/databrowser.cpp
2822
0533562bc3a4 Engine:
smxx
parents: 2821
diff changeset
   122
0533562bc3a4 Engine:
smxx
parents: 2821
diff changeset
   123
win32 {
3353
a767dd3786b5 OpenAL makes a comeback! (might require some cleanup)
koda
parents: 3344
diff changeset
   124
	SOURCES += ../QTfrontend/xfire.cpp
2822
0533562bc3a4 Engine:
smxx
parents: 2821
diff changeset
   125
}
2545
853fa5312886 update .pro file, lupdate and smaller italian translation
koda
parents: 2543
diff changeset
   126
4013
c9b20ed3566f An initial arabic translation. The game engine strings, unfortunately, are not mirrored. A bug should probably be filed on that. It maybe necessary to actually flip the text texture generated by SDL.
circoficus
parents: 3918
diff changeset
   127
TRANSLATIONS += ../share/hedgewars/Data/Locale/hedgewars_ar.ts 
2545
853fa5312886 update .pro file, lupdate and smaller italian translation
koda
parents: 2543
diff changeset
   128
TRANSLATIONS += ../share/hedgewars/Data/Locale/hedgewars_bg.ts 	 
4013
c9b20ed3566f An initial arabic translation. The game engine strings, unfortunately, are not mirrored. A bug should probably be filed on that. It maybe necessary to actually flip the text texture generated by SDL.
circoficus
parents: 3918
diff changeset
   129
TRANSLATIONS += ../share/hedgewars/Data/Locale/hedgewars_cs.ts 	 
2545
853fa5312886 update .pro file, lupdate and smaller italian translation
koda
parents: 2543
diff changeset
   130
TRANSLATIONS += ../share/hedgewars/Data/Locale/hedgewars_de.ts 	 
853fa5312886 update .pro file, lupdate and smaller italian translation
koda
parents: 2543
diff changeset
   131
TRANSLATIONS += ../share/hedgewars/Data/Locale/hedgewars_en.ts 	 
853fa5312886 update .pro file, lupdate and smaller italian translation
koda
parents: 2543
diff changeset
   132
TRANSLATIONS += ../share/hedgewars/Data/Locale/hedgewars_es.ts 	 
853fa5312886 update .pro file, lupdate and smaller italian translation
koda
parents: 2543
diff changeset
   133
TRANSLATIONS += ../share/hedgewars/Data/Locale/hedgewars_fi.ts 	 
853fa5312886 update .pro file, lupdate and smaller italian translation
koda
parents: 2543
diff changeset
   134
TRANSLATIONS += ../share/hedgewars/Data/Locale/hedgewars_fr.ts 	 
3918
916ed485daed Update translations, add a hungarian stub for edge_hog who is volunteering
nemo
parents: 3353
diff changeset
   135
TRANSLATIONS += ../share/hedgewars/Data/Locale/hedgewars_hu.ts 	 
2545
853fa5312886 update .pro file, lupdate and smaller italian translation
koda
parents: 2543
diff changeset
   136
TRANSLATIONS += ../share/hedgewars/Data/Locale/hedgewars_it.ts 	 
853fa5312886 update .pro file, lupdate and smaller italian translation
koda
parents: 2543
diff changeset
   137
TRANSLATIONS += ../share/hedgewars/Data/Locale/hedgewars_ja.ts 	 
4707
1d3b19eabfe7 Add stubs for korean locale, now that we have a volunteer, update locale files
nemo
parents: 4418
diff changeset
   138
TRANSLATIONS += ../share/hedgewars/Data/Locale/hedgewars_ko.ts 	 
5620
05445149f2d5 Add Lithuanian Qt translation, add Lukas to game credits
nemo
parents: 5289
diff changeset
   139
TRANSLATIONS += ../share/hedgewars/Data/Locale/hedgewars_lt.ts
4418
c4ce66435305 update translations, add Dutch
nemo
parents: 4013
diff changeset
   140
TRANSLATIONS += ../share/hedgewars/Data/Locale/hedgewars_nl.ts 	 
2545
853fa5312886 update .pro file, lupdate and smaller italian translation
koda
parents: 2543
diff changeset
   141
TRANSLATIONS += ../share/hedgewars/Data/Locale/hedgewars_pl.ts 	 
853fa5312886 update .pro file, lupdate and smaller italian translation
koda
parents: 2543
diff changeset
   142
TRANSLATIONS += ../share/hedgewars/Data/Locale/hedgewars_pt_BR.ts 	 
853fa5312886 update .pro file, lupdate and smaller italian translation
koda
parents: 2543
diff changeset
   143
TRANSLATIONS += ../share/hedgewars/Data/Locale/hedgewars_pt_PT.ts 	 
853fa5312886 update .pro file, lupdate and smaller italian translation
koda
parents: 2543
diff changeset
   144
TRANSLATIONS += ../share/hedgewars/Data/Locale/hedgewars_ru.ts 	 
853fa5312886 update .pro file, lupdate and smaller italian translation
koda
parents: 2543
diff changeset
   145
TRANSLATIONS += ../share/hedgewars/Data/Locale/hedgewars_sk.ts 	 
853fa5312886 update .pro file, lupdate and smaller italian translation
koda
parents: 2543
diff changeset
   146
TRANSLATIONS += ../share/hedgewars/Data/Locale/hedgewars_sv.ts 	 
853fa5312886 update .pro file, lupdate and smaller italian translation
koda
parents: 2543
diff changeset
   147
TRANSLATIONS += ../share/hedgewars/Data/Locale/hedgewars_tr_TR.ts 	 
853fa5312886 update .pro file, lupdate and smaller italian translation
koda
parents: 2543
diff changeset
   148
TRANSLATIONS += ../share/hedgewars/Data/Locale/hedgewars_uk.ts 	 
853fa5312886 update .pro file, lupdate and smaller italian translation
koda
parents: 2543
diff changeset
   149
TRANSLATIONS += ../share/hedgewars/Data/Locale/hedgewars_zh_CN.ts 	 
2543
bf1da5037433 - lupdate && lrelease
unc0rr
parents: 2525
diff changeset
   150
TRANSLATIONS += ../share/hedgewars/Data/Locale/hedgewars_zh_TW.ts
bf1da5037433 - lupdate && lrelease
unc0rr
parents: 2525
diff changeset
   151
2522
42986b9ebc74 moves project files to proper directory
koda
parents:
diff changeset
   152
RESOURCES += ../QTfrontend/hedgewars.qrc
42986b9ebc74 moves project files to proper directory
koda
parents:
diff changeset
   153
5754
583b7a683b17 - Implement progressbars to show download progress
unc0rr
parents: 5620
diff changeset
   154
LIBS += -L../misc/quazip -lquazip
583b7a683b17 - Implement progressbars to show download progress
unc0rr
parents: 5620
diff changeset
   155
2522
42986b9ebc74 moves project files to proper directory
koda
parents:
diff changeset
   156
!macx {
4878
c310bab60b94 Update frontend's project file
unc0rr
parents: 4707
diff changeset
   157
        LIBS += -lSDL -lSDL_mixer
2522
42986b9ebc74 moves project files to proper directory
koda
parents:
diff changeset
   158
} else {
3353
a767dd3786b5 OpenAL makes a comeback! (might require some cleanup)
koda
parents: 3344
diff changeset
   159
	QMAKE_MACOSX_DEPLOYMENT_TARGET = 10.6
a767dd3786b5 OpenAL makes a comeback! (might require some cleanup)
koda
parents: 3344
diff changeset
   160
	QMAKE_MAC_SDK=/Developer/SDKs/MacOSX10.6.sdk
2522
42986b9ebc74 moves project files to proper directory
koda
parents:
diff changeset
   161
	
3353
a767dd3786b5 OpenAL makes a comeback! (might require some cleanup)
koda
parents: 3344
diff changeset
   162
	OBJECTIVE_SOURCES += ../QTfrontend/*.m ../QTfrontend/*.mm 
a767dd3786b5 OpenAL makes a comeback! (might require some cleanup)
koda
parents: 3344
diff changeset
   163
	SOURCES += ../QTfrontend/AutoUpdater.cpp ../QTfrontend/InstallController.cpp \
a767dd3786b5 OpenAL makes a comeback! (might require some cleanup)
koda
parents: 3344
diff changeset
   164
			../../build/QTfrontend/hwconsts.cpp
2545
853fa5312886 update .pro file, lupdate and smaller italian translation
koda
parents: 2543
diff changeset
   165
	HEADERS += ../QTfrontend/M3InstallController.h ../QTfrontend/M3Panel.h \
853fa5312886 update .pro file, lupdate and smaller italian translation
koda
parents: 2543
diff changeset
   166
		../QTfrontend/NSWorkspace_RBAdditions.h ../QTfrontend/AutoUpdater.h \
853fa5312886 update .pro file, lupdate and smaller italian translation
koda
parents: 2543
diff changeset
   167
		../QTfrontend/CocoaInitializer.h ../QTfrontend/InstallController.h \
853fa5312886 update .pro file, lupdate and smaller italian translation
koda
parents: 2543
diff changeset
   168
		../QTfrontend/SparkleAutoUpdater.h 
853fa5312886 update .pro file, lupdate and smaller italian translation
koda
parents: 2543
diff changeset
   169
	
3353
a767dd3786b5 OpenAL makes a comeback! (might require some cleanup)
koda
parents: 3344
diff changeset
   170
	LIBS += -lobjc -framework AppKit -framework IOKit -framework Foundation -framework SDL -framework SDL_Mixer -framework Sparkle -DSPARKLE_ENABLED 
2522
42986b9ebc74 moves project files to proper directory
koda
parents:
diff changeset
   171
	INCLUDEPATH += /Library/Frameworks/SDL.framework/Headers /Library/Frameworks/SDL_Mixer.framework/Headers
42986b9ebc74 moves project files to proper directory
koda
parents:
diff changeset
   172
	CONFIG += warn_on x86
42986b9ebc74 moves project files to proper directory
koda
parents:
diff changeset
   173
42986b9ebc74 moves project files to proper directory
koda
parents:
diff changeset
   174
 	#CONFIG += x86 ppc x86_64 ppc64
42986b9ebc74 moves project files to proper directory
koda
parents:
diff changeset
   175
}