|
1 # |
|
2 # Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). |
|
3 # All rights reserved. |
|
4 # This component and the accompanying materials are made available |
|
5 # under the terms of "Eclipse Public License v1.0" |
|
6 # which accompanies this distribution, and is available |
|
7 # at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
8 # |
|
9 # Initial Contributors: |
|
10 # Nokia Corporation - initial contribution. |
|
11 # |
|
12 # Contributors: |
|
13 # |
|
14 # Description: |
|
15 # |
|
16 |
|
17 TEMPLATE = app |
|
18 QT += webkit xmlpatterns |
|
19 CONFIG += hb |
|
20 TRANSLATIONS = userguide.ts common.ts |
|
21 #add "precompile_header" to CONFIG |
|
22 |
|
23 TARGET = Userguide |
|
24 DEPENDPATH += . |
|
25 INCLUDEPATH += ./inc |
|
26 |
|
27 # PRECOMPILED_HEADER = pch.h |
|
28 |
|
29 # Input |
|
30 HEADERS += inc/HelpMainWindow.h \ |
|
31 inc/BrowserWrapper.h \ |
|
32 inc/HelpContentsView.h \ |
|
33 inc/HelpCategoryView.h \ |
|
34 inc/HelpDocumentLoader.h \ |
|
35 inc/HelpCommon.h \ |
|
36 inc/HelpDataProvider.h \ |
|
37 inc/HelpUtils.h \ |
|
38 inc/HelpProxyModel.h \ |
|
39 inc/HelpStandardItem.h |
|
40 |
|
41 SOURCES += src/main.cpp \ |
|
42 src/HelpMainWindow.cpp \ |
|
43 src/BrowserWrapper.cpp \ |
|
44 src/HelpContentsView.cpp \ |
|
45 src/HelpCategoryView.cpp \ |
|
46 src/HelpDocumentLoader.cpp \ |
|
47 src/HelpDataProvider.cpp \ |
|
48 src/HelpUtils.cpp \ |
|
49 src/HelpProxyModel.cpp \ |
|
50 src/HelpStandardItem.cpp |
|
51 |
|
52 win32 { |
|
53 SOURCES += src/HelpUtils_win.cpp |
|
54 } |
|
55 |
|
56 symbian { |
|
57 TARGET.UID3 = 0x10005234 |
|
58 TARGET.CAPABILITY = CAP_APPLICATION |
|
59 TARGET.EPOCHEAPSIZE = 0x020000 0x1000000 |
|
60 |
|
61 LIBS += -lezip -lxqservice -lxqserviceutil |
|
62 include(rom/userguide.pri) |
|
63 } |
|
64 |
|
65 RESOURCES += resources/Userguide.qrc |
|
66 |
|
67 debug: DESTDIR = ./debug |
|
68 release: DESTDIR = ./release |