~oif-team/ubuntu/natty/qt4-x11/xi2.1

« back to all changes in this revision

Viewing changes to tools/assistant/assistant.pro

  • Committer: Bazaar Package Importer
  • Author(s): Adam Conrad
  • Date: 2005-08-24 04:09:09 UTC
  • Revision ID: james.westby@ubuntu.com-20050824040909-xmxe9jfr4a0w5671
Tags: upstream-4.0.0
ImportĀ upstreamĀ versionĀ 4.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
TEMPLATE = app
 
2
LANGUAGE = C++
 
3
TARGET         = assistant
 
4
 
 
5
CONFIG        += qt warn_on
 
6
CONFIG        -= debug_and_release
 
7
build_all:!build_pass {
 
8
    CONFIG -= build_all
 
9
    CONFIG += release
 
10
}
 
11
QT            += xml network
 
12
 
 
13
PROJECTNAME        = Assistant
 
14
DESTDIR            = ../../bin
 
15
 
 
16
FORMS += finddialog.ui \
 
17
        helpdialog.ui \
 
18
        mainwindow.ui \
 
19
        settingsdialog.ui \
 
20
        tabbedbrowser.ui \
 
21
        topicchooser.ui
 
22
 
 
23
SOURCES += main.cpp \
 
24
        helpwindow.cpp \
 
25
        topicchooser.cpp \
 
26
        docuparser.cpp \
 
27
        settingsdialog.cpp \
 
28
        index.cpp \
 
29
        profile.cpp \
 
30
        config.cpp \
 
31
        finddialog.cpp \
 
32
        helpdialog.cpp \
 
33
        mainwindow.cpp \
 
34
        tabbedbrowser.cpp
 
35
 
 
36
HEADERS        += helpwindow.h \
 
37
        topicchooser.h \
 
38
        docuparser.h \
 
39
        settingsdialog.h \
 
40
        index.h \
 
41
        profile.h \
 
42
        finddialog.h \
 
43
        helpdialog.h \
 
44
        mainwindow.h \
 
45
        tabbedbrowser.h \
 
46
        config.h
 
47
 
 
48
RESOURCES += assistant.qrc
 
49
 
 
50
contains(QT_PRODUCT, OpenSource.*):DEFINES *= QT_OPENSOURCE
 
51
DEFINES += QT_KEYWORDS
 
52
#DEFINES +=  QT_PALMTOPCENTER_DOCS
 
53
 
 
54
win32 {
 
55
    LIBS += -lshell32
 
56
    RC_FILE = assistant.rc
 
57
}
 
58
 
 
59
mac {
 
60
    ICON = assistant.icns
 
61
    TARGET = assistant
 
62
#    QMAKE_INFO_PLIST = Info_mac.plist
 
63
}
 
64
 
 
65
target.path=$$[QT_INSTALL_BINS]
 
66
INSTALLS += target
 
67
 
 
68
#assistanttranslations.files = *.qm
 
69
#assistanttranslations.path = $$[QT_INSTALL_TRANSLATIONS]
 
70
#INSTALLS += assistanttranslations
 
71
 
 
72
TRANSLATIONS        = assistant_de.ts \
 
73
                  assistant_fr.ts
 
74
 
 
75
 
 
76
unix:!contains(QT_CONFIG, zlib):LIBS += -lz