Updated build for Harmattan.
[medard] / medard.pro
1 # Add files and directories to ship with the application 
2 # by adapting the examples below.
3 # file1.source = myfile
4 # dir1.source = mydir
5 DEPLOYMENTFOLDERS = # file1 dir1
6
7 symbian:TARGET.UID3 = 0xE119EAAE
8
9 # Smart Installer package's UID
10 # This UID is from the protected range 
11 # and therefore the package will fail to install if self-signed
12 # By default qmake uses the unprotected range value if unprotected UID is defined for the application
13 # and 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
20 # the following lines and add the respective components to the 
21 # MOBILITY variable. 
22 # CONFIG += mobility
23 # MOBILITY +=
24 CONFIG += meegotouch
25
26 QT += network
27
28 SOURCES += \
29     src/forecastwidget.cpp \
30     src/medarddownloader.cpp \
31     src/mainwindow.cpp \
32     src/main.cpp \
33     src/aboutdialog.cpp
34
35 HEADERS += \
36     src/forecastwidget.h \
37     src/medarddownloader.h \
38     src/mainwindow.h \
39     src/aboutdialog.h
40
41 FORMS +=
42
43 # Please do not modify the following two lines. Required for deployment.
44 include(deployment.pri)
45 qtcAddDeployment()
46
47 contains(MEEGO_EDITION,harmattan): {
48     MEEGO_VERSION_MAJOR = 1
49     MEEGO_VERSION_MINOR = 2
50     MEEGO_VERSION_PATCH = 0
51     DEFINES += MEEGO_EDITION_HARMATTAN
52 }
53
54 OTHER_FILES += \
55     qtc_packaging/debian_fremantle/rules \
56     qtc_packaging/debian_fremantle/README \
57     qtc_packaging/debian_fremantle/copyright \
58     qtc_packaging/debian_fremantle/control \
59     qtc_packaging/debian_fremantle/compat \
60     qtc_packaging/debian_fremantle/changelog \
61     qtc_packaging/debian_harmattan/rules \
62     qtc_packaging/debian_harmattan/README \
63     qtc_packaging/debian_harmattan/manifest.aegis \
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
69 TRANSLATIONS += \
70     translations/medard_cs.ts \
71     translations/medard_en.ts \
72     translations/medard_sk.ts
73