blob: 6cfdf8f158682751c44b5408c6680935e358ea0a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
TEMPLATE = lib
CONFIG += qt warn_on plugin
SOURCES += cppeditor.cpp syntaxhighliter_cpp.cpp cppcompletion.cpp editorinterfaceimpl.cpp languageinterfaceimpl.cpp common.cpp preferenceinterfaceimpl.cpp yyreg.cpp cppbrowser.cpp projectsettingsinterfaceimpl.cpp sourcetemplateinterfaceimpl.cpp
HEADERS += cppeditor.h syntaxhighliter_cpp.h cppcompletion.h editorinterfaceimpl.h languageinterfaceimpl.h preferenceinterfaceimpl.h yyreg.h cppbrowser.h projectsettingsinterfaceimpl.h sourcetemplateinterfaceimpl.h
FORMS = projectsettings.ui mainfilesettings.ui
TARGET = cppeditor
DESTDIR = ../../../../plugins/designer
VERSION = 1.0.0
INCLUDEPATH += ../../interfaces ../../editor $$QT_BUILD_TREE/tools/designer/editor
hpux-* {
LIBS += $$QT_BUILD_TREE/lib/libtqteditor.a
} else {
LIBS += -L$$QT_BUILD_TREE/lib -ltqteditor
}
target.path += $$plugins.path/designer
INSTALLS += target
|