File: QtDesigner.pro

package info (click to toggle)
monkeystudio 1.9.0.4%2Bgit20161218-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 41,500 kB
  • ctags: 22,118
  • sloc: cpp: 144,671; ansic: 33,969; python: 2,922; makefile: 127; sh: 122; php: 73; cs: 69
file content (39 lines) | stat: -rw-r--r-- 1,194 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
TARGET  = QtDesigner
include( ../../plugins.pri )
DESTDIR = $$MONKEY_PLUGINS_DIR/child
INCLUDEPATH *= src/3rdparty/designer/$${QT_MAJOR_VERSION}.$${QT_MINOR_VERSION}
greaterThan(QT_MAJOR_VERSION, 4) {
    QT *= designer designercomponents-private

} else {
    CONFIG  *= designer
    qtAddLibrary( QtDesignerComponents )
}

RESOURCES   *= src/resources/QtDesigner.qrc

HEADERS = src/QtDesigner.h \
    src/QtDesignerChild.h \
    src/QDesignerActionEditor.h \
    src/QDesignerObjectInspector.h \
    src/QDesignerPropertyEditor.h \
    src/QDesignerSignalSlotEditor.h \
    src/QDesignerWidgetBox.h \
    src/QDesignerResourcesEditor.h \
    src/QtDesignerManager.h \
    src/LegacyDesigner.h \
    src/MkSDesignerIntegration.h

SOURCES = src/QtDesigner.cpp \
    src/QtDesignerChild.cpp \
    src/QDesignerActionEditor.cpp \
    src/QDesignerObjectInspector.cpp \
    src/QDesignerPropertyEditor.cpp \
    src/QDesignerSignalSlotEditor.cpp \
    src/QDesignerWidgetBox.cpp \
    src/QDesignerResourcesEditor.cpp \
    src/QtDesignerManager.cpp \
    src/LegacyDesigner.cpp \
    src/MkSDesignerIntegration.cpp

include( src/3rdparty/qtcreator/designerintegrationv2/designerintegration.pri )