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