Added old chessclockfiles back to the project
[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
47 HEADERS  += chessclockwindow.h \
48     classes/turninformation.h \
49     classes/chessclock.h \
50     classes/chessclockwidget.h \
51     classes/clockswidget.h \
52     classes/welcomescreenwidget.h \
53     classes/timecontrol.h \
54     classes/timecontrol/basicdialog.h \
55     classes/timecontrol/notimecontrol.h \
56     classes/startwidget.h \
57     classes/timecontrol/fischertimecontrol.h \
58     classes/timecontrol/fischerclock.h \
59     classes/timecontrol/fischerafterclock.h \
60     classes/timecontrol/fischeraftertimecontrol.h \
61     classes/timecontrol/delayclock.h \
62     classes/timecontrol/delaytimecontrol.h \
63     classes/timecontrol/delayafterclock.h \
64     classes/timecontrol/delayaftertimecontrol.h \
65     classes/timecontrol/hourglasstimecontrol.h \
66     classes/timecontrol/hourglassclock.h \
67     classes/screenlitkeeper.h
68
69
70 OTHER_FILES += \
71     qml/MainPage.qml \
72     qml/main.qml \
73     chessclock.desktop \
74     chessclock.svg \
75     chessclock.png \
76     qtc_packaging/debian_harmattan/rules \
77     qtc_packaging/debian_harmattan/README \
78     qtc_packaging/debian_harmattan/copyright \
79     qtc_packaging/debian_harmattan/control \
80     qtc_packaging/debian_harmattan/compat \
81     qtc_packaging/debian_harmattan/changelog
82
83 RESOURCES += \
84     res.qrc \
85     chessclock.qrc
86
87 # Please do not modify the following two lines. Required for deployment.
88 include(deployment.pri)
89 qtcAddDeployment()
90
91 # enable booster
92 CONFIG += qdeclarative-boostable
93 QMAKE_CXXFLAGS += -fPIC -fvisibility=hidden -fvisibility-inlines-hidden
94 QMAKE_LFLAGS += -pie -rdynamic
95
96 unix:!symbian:!maemo5 {
97     target.path = /opt/chessclock/bin
98     INSTALLS += target
99 }
100