Removed unused C++ files
[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     classes/turninformation.cpp \
29     classes/chessclock.cpp \
30     classes/chessclockwidget.cpp \
31     classes/clockswidget.cpp \
32     classes/timecontrol/fischerclock.cpp \
33     classes/timecontrol/fischerafterclock.cpp \
34     classes/timecontrol/delayclock.cpp \
35     classes/timecontrol/delayafterclock.cpp \
36     classes/timecontrol/hourglassclock.cpp \
37     classes/screenlitkeeper.cpp \
38     classes/wrappedclockswidget.cpp \
39     chessclockview.cpp
40
41 HEADERS  += \
42     classes/turninformation.h \
43     classes/chessclock.h \
44     classes/chessclockwidget.h \
45     classes/clockswidget.h \
46     classes/timecontrol.h \
47     classes/timecontrol/notimecontrol.h \
48     classes/timecontrol/fischerclock.h \
49     classes/timecontrol/fischerafterclock.h \
50     classes/timecontrol/delayclock.h \
51     classes/timecontrol/delayafterclock.h \
52     classes/timecontrol/hourglassclock.h \
53     classes/screenlitkeeper.h \
54     classes/wrappedclockswidget.h \
55     chessclockview.h
56
57
58 OTHER_FILES += \
59     qml/MainPage.qml \
60     qml/main.qml \
61     chessclock.desktop \
62     chessclock.svg \
63     chessclock.png \
64     qtc_packaging/debian_harmattan/rules \
65     qtc_packaging/debian_harmattan/README \
66     qtc_packaging/debian_harmattan/copyright \
67     qtc_packaging/debian_harmattan/control \
68     qtc_packaging/debian_harmattan/compat \
69     qtc_packaging/debian_harmattan/changelog \
70     qml/ClocksPage.qml \
71     qml/AboutPage.qml \
72     qml/NewGameDialogPage.qml
73
74
75 RESOURCES += \
76     res.qrc \
77     chessclock.qrc
78
79 # Please do not modify the following two lines. Required for deployment.
80 include(deployment.pri)
81 qtcAddDeployment()
82
83 # enable booster
84 CONFIG += qdeclarative-boostable
85 QMAKE_CXXFLAGS += -fPIC -fvisibility=hidden -fvisibility-inlines-hidden
86 QMAKE_LFLAGS += -pie -rdynamic
87
88 unix:!symbian:!maemo5 {
89     target.path = /opt/chessclock/bin
90     INSTALLS += target
91 }