Version set to 1.9.0
[chessclock] / chessclock.pro
1 # Add more folders to ship with the application, here
2
3 # Additional import path used to resolve QML modules in Creator's code model
4 QML_IMPORT_PATH =
5
6 QT+= declarative
7 symbian:TARGET.UID3 = 0xE00C40B5
8
9 VERSION = 1.9.0
10
11 # Smart Installer package's UID
12 # This UID is from the protected range and therefore the package will
13 # fail to install if self-signed. By default qmake uses the unprotected
14 # range value if unprotected UID is defined for the application and
15 # 0x2002CCCF value if protected UID is given to the application
16 #symbian:DEPLOYMENT.installer_header = 0x2002CCCF
17
18 # Allow network access on Symbian
19 symbian:TARGET.CAPABILITY += NetworkServices
20
21 # If your application uses the Qt Mobility libraries, uncomment the following
22 # lines and add the respective components to the MOBILITY variable.
23 CONFIG += mobility
24 MOBILITY += systeminfo
25
26 # The .cpp file which was generated for your project. Feel free to hack it.
27 SOURCES += main.cpp \
28         chessclockwindow.cpp \
29     classes/turninformation.cpp \
30     classes/chessclock.cpp \
31     classes/chessclockwidget.cpp \
32     classes/clockswidget.cpp \
33     classes/welcomescreenwidget.cpp \
34     classes/timecontrol/basicdialog.cpp \
35     classes/timecontrol/notimecontrol.cpp \
36     classes/startwidget.cpp \
37     classes/timecontrol/fischertimecontrol.cpp \
38     classes/timecontrol/fischerclock.cpp \
39     classes/timecontrol/fischerafterclock.cpp \
40     classes/timecontrol/fischeraftertimecontrol.cpp \
41     classes/timecontrol/delayclock.cpp \
42     classes/timecontrol/delaytimecontrol.cpp \
43     classes/timecontrol/delayafterclock.cpp \
44     classes/timecontrol/delayaftertimecontrol.cpp \
45     classes/timecontrol/hourglassclock.cpp \
46     classes/timecontrol/hourglasstimecontrol.cpp \
47     classes/screenlitkeeper.cpp \
48     classes/wrappedclockswidget.cpp \
49     chessclockview.cpp
50
51 HEADERS  += chessclockwindow.h \
52     classes/turninformation.h \
53     classes/chessclock.h \
54     classes/chessclockwidget.h \
55     classes/clockswidget.h \
56     classes/welcomescreenwidget.h \
57     classes/timecontrol.h \
58     classes/timecontrol/basicdialog.h \
59     classes/timecontrol/notimecontrol.h \
60     classes/startwidget.h \
61     classes/timecontrol/fischertimecontrol.h \
62     classes/timecontrol/fischerclock.h \
63     classes/timecontrol/fischerafterclock.h \
64     classes/timecontrol/fischeraftertimecontrol.h \
65     classes/timecontrol/delayclock.h \
66     classes/timecontrol/delaytimecontrol.h \
67     classes/timecontrol/delayafterclock.h \
68     classes/timecontrol/delayaftertimecontrol.h \
69     classes/timecontrol/hourglasstimecontrol.h \
70     classes/timecontrol/hourglassclock.h \
71     classes/screenlitkeeper.h \
72     classes/wrappedclockswidget.h \
73     chessclockview.h
74
75
76 OTHER_FILES += \
77     qml/MainPage.qml \
78     qml/main.qml \
79     chessclock.desktop \
80     chessclock.svg \
81     chessclock.png \
82     qtc_packaging/debian_harmattan/rules \
83     qtc_packaging/debian_harmattan/README \
84     qtc_packaging/debian_harmattan/copyright \
85     qtc_packaging/debian_harmattan/control \
86     qtc_packaging/debian_harmattan/compat \
87     qtc_packaging/debian_harmattan/changelog \
88     qml/ClocksPage.qml \
89     qml/AboutPage.qml \
90     qml/NewGameDialogPage.qml
91
92
93 RESOURCES += \
94     res.qrc \
95     chessclock.qrc
96
97 # Please do not modify the following two lines. Required for deployment.
98 include(deployment.pri)
99 qtcAddDeployment()
100
101 # enable booster
102 CONFIG += qdeclarative-boostable
103 QMAKE_CXXFLAGS += -fPIC -fvisibility=hidden -fvisibility-inlines-hidden
104 QMAKE_LFLAGS += -pie -rdynamic
105
106 unix:!symbian:!maemo5 {
107     target.path = /opt/chessclock/bin
108     INSTALLS += target
109 }