0fce4f5ffb68ad57008e07d726f94bf25f62ed6f
[mverbiste] / mverbiste.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 = 0xE214283E
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 SOURCES += main.cpp mainwindow.cpp \
26     verbiste/Trie.cpp \
27     verbiste/misc-types.cpp \
28     verbiste/FrenchVerbDictionary.cpp \
29     verbiste/c-api.cpp
30 HEADERS += mainwindow.h \
31     verbiste/Trie.h \
32     verbiste/misc-types.h \
33     verbiste/FrenchVerbDictionary.h \
34     verbiste/c-api.h
35 FORMS += mainwindow.ui
36
37 # Please do not modify the following two lines. Required for deployment.
38 include(deployment.pri)
39 qtcAddDeployment()
40
41 OTHER_FILES += \
42     qtc_packaging/debian_harmattan/rules \
43     qtc_packaging/debian_harmattan/README \
44     qtc_packaging/debian_harmattan/manifest.aegis \
45     qtc_packaging/debian_harmattan/copyright \
46     qtc_packaging/debian_harmattan/control \
47     qtc_packaging/debian_harmattan/compat \
48     qtc_packaging/debian_harmattan/changelog \
49     qtc_packaging/debian_fremantle/rules \
50     qtc_packaging/debian_fremantle/README \
51     qtc_packaging/debian_fremantle/copyright \
52     qtc_packaging/debian_fremantle/control \
53     qtc_packaging/debian_fremantle/compat \
54     qtc_packaging/debian_fremantle/changelog \
55     verbiste/verbiste.dox \
56     verbiste/Makefile.in \
57     verbiste/Makefile.am \
58     data/verbs-it.xml \
59     data/verbs-fr.xml \
60     data/verbs-el.xml \
61     data/conjugation-it.xml \
62     data/conjugation-fr.xml \
63     data/conjugation-el.xml \
64     data/check-data.pl
65
66 # To build verbiste
67 unix: CONFIG += link_pkgconfig
68 unix: PKGCONFIG += libxml-2.0
69 QMAKE_CXXFLAGS += -DLIBDATADIR=\\\"data\\\" -DICONV_CONST= -DVERBSFRXML=\\\"data/verbs-fr.xml\\\"