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