source: trunk/tools/assistant/lib/lib.pro@ 500

Last change on this file since 500 was 2, checked in by Dmitry A. Kuminov, 16 years ago

Initially imported qt-all-opensource-src-4.5.1 from Trolltech.

File size: 2.0 KB
Line 
1QT += sql xml network
2TEMPLATE = lib
3TARGET = QtHelp
4DEFINES += QHELP_LIB QT_CLUCENE_SUPPORT
5CONFIG += qt warn_on
6
7include(../../../src/qbase.pri)
8
9QMAKE_TARGET_PRODUCT = Help
10QMAKE_TARGET_DESCRIPTION = Help application framework.
11DEFINES -= QT_ASCII_CAST_WARNINGS
12
13qclucene = QtCLucene$${QT_LIBINFIX}
14if(!debug_and_release|build_pass):CONFIG(debug, debug|release) {
15 mac:qclucene = $${qclucene}_debug
16 win32:qclucene = $${qclucene}d
17}
18linux-lsb-g++:LIBS += --lsb-shared-libs=$$qclucene
19unix:QMAKE_PKGCONFIG_REQUIRES += QtNetwork QtSql QtXml
20LIBS += -l$$qclucene
21unix:QMAKE_PKGCONFIG_REQUIRES += QtNetwork QtSql QtXml
22
23RESOURCES += helpsystem.qrc
24
25SOURCES += qhelpenginecore.cpp \
26 qhelpengine.cpp \
27 qhelpdbreader.cpp \
28 qhelpcontentwidget.cpp \
29 qhelpindexwidget.cpp \
30 qhelpgenerator.cpp \
31 qhelpdatainterface.cpp \
32 qhelpprojectdata.cpp \
33 qhelpcollectionhandler.cpp \
34 qhelpsearchengine.cpp \
35 qhelpsearchquerywidget.cpp \
36 qhelpsearchresultwidget.cpp \
37 qhelpsearchindex_default.cpp \
38 qhelpsearchindexwriter_default.cpp \
39 qhelpsearchindexreader_default.cpp
40
41# access to clucene
42SOURCES += qhelpsearchindexwriter_clucene.cpp \
43 qhelpsearchindexreader_clucene.cpp
44
45HEADERS += qhelpenginecore.h \
46 qhelpengine.h \
47 qhelpengine_p.h \
48 qhelp_global.h \
49 qhelpdbreader_p.h \
50 qhelpcontentwidget.h \
51 qhelpindexwidget.h \
52 qhelpgenerator_p.h \
53 qhelpdatainterface_p.h \
54 qhelpprojectdata_p.h \
55 qhelpcollectionhandler_p.h \