OSDN Git Service

Version 0.5
[fontmanager/fontmanager.git] / fontmanager.pro
1 # Add more folders to ship with the application, here
2 folder_01.source = qml/fontmanager
3 folder_01.target = qml
4 DEPLOYMENTFOLDERS = folder_01
5
6 # Additional import path used to resolve QML modules in Creator's code model
7 QML_IMPORT_PATH =
8
9 symbian:TARGET.UID3 = 0xE6A64536
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 +=
25
26 # Speed up launching on MeeGo/Harmattan when using applauncherd daemon
27 # CONFIG += qdeclarative-boostable
28
29 # Add dependency to Symbian components
30 # CONFIG += qt-components
31
32 defineReplace(cleanPath) {
33     win32:1 ~= s|\\\\|/|g
34     contains(1, ^/.*):pfx = /
35     else:pfx =
36     segs = $$split(1, /)
37     out =
38     for(seg, segs) {
39         equals(seg, ..):out = $$member(out, 0, -2)
40         else:!equals(seg, .):out += $$seg
41     }
42     return($$join(out, /, $$pfx))
43 }
44
45 SOURCE_TREE_ROOT = $$PWD
46 isEmpty(BUILD_TREE_ROOT) {
47     sub_dir = $$_PRO_FILE_PWD_
48     sub_dir ~= s,^$$re_escape($$PWD),,
49     BUILD_TREE_ROOT = $$cleanPath($$OUT_PWD)
50     BUILD_TREE_ROOT ~= s,$$re_escape($$sub_dir)$,,
51 }
52
53 # The .cpp file which was generated for your project. Feel free to hack it.
54 SOURCES += main.cpp \
55     applicationcontroller.cpp \
56     fontinfo.cpp \
57     fontconfigmanager.cpp \
58     installedfontinfo.cpp \
59     fontsconfigproperties.cpp \
60     fontsconfelement.cpp \
61     fontsconf.cpp \
62     fontsconfeditorcontroller.cpp
63
64 # Please do not modify the following two lines. Required for deployment.
65 include(qmlapplicationviewer/qmlapplicationviewer.pri)
66 qtcAddDeployment()
67
68 OTHER_FILES += \
69     qtc_packaging/debian_harmattan/rules \
70     qtc_packaging/debian_harmattan/README \
71     qtc_packaging/debian_harmattan/manifest.aegis \
72     qtc_packaging/debian_harmattan/copyright \
73     qtc_packaging/debian_harmattan/control \
74     qtc_packaging/debian_harmattan/compat \
75     qtc_packaging/debian_harmattan/changelog \
76     qtc_packaging/debian_harmattan/README_ja.txt
77
78 HEADERS += \
79     applicationcontroller.h \
80     fontinfo.h \
81     fontconfigmanager.h \
82     installedfontinfo.h \
83     fontsconfigproperties.h \
84     fontconfigdefs.h \
85     fontsconfelement.h \
86     fontsconf.h \
87     fontsconfeditorcontroller.h
88
89 include(translations/translations.pri)
90