added very simple html page.
[medard] / medard.pro
1 # Add files and directories to ship with the application 
2 # by adapting the examples below.
3 translations.source = translations/*.qm
4 translations.target = /share/l10n
5 DEPLOYMENTFOLDERS = translations
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
25 QT += network
26
27 SOURCES += \
28     src/forecastwidget.cpp \
29     src/medarddownloader.cpp \
30     src/mainwindow.cpp \
31     src/main.cpp \
32     src/aboutdialog.cpp
33
34 HEADERS += \
35     src/forecastwidget.h \
36     src/medarddownloader.h \
37     src/mainwindow.h \
38     src/aboutdialog.h
39
40 FORMS +=
41
42 # Please do not modify the following two lines. Required for deployment.
43 include(deployment.pri)
44 qtcAddDeployment()
45
46 contains(MEEGO_EDITION,harmattan): {
47     MEEGO_VERSION_MAJOR = 1
48     MEEGO_VERSION_MINOR = 2
49     MEEGO_VERSION_PATCH = 0
50     DEFINES += MEEGO_EDITION_HARMATTAN
51     CONFIG += meegotouch
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