0
|
1 |
QT += qt3support
|
|
2 |
TEMPLATE = lib
|
|
3 |
CONFIG += plugin
|
|
4 |
DESTDIR =
|
|
5 |
TARGET = qt3supportwidgets
|
|
6 |
|
|
7 |
CONFIG += qt warn_on qt_no_compat_warning
|
|
8 |
|
|
9 |
include(../plugins.pri)
|
|
10 |
build_all:!build_pass {
|
|
11 |
CONFIG -= build_all
|
|
12 |
CONFIG += release
|
|
13 |
}
|
|
14 |
|
|
15 |
DEPENDPATH += q3iconview \
|
|
16 |
q3listview \
|
|
17 |
q3mainwindow \
|
|
18 |
q3toolbar \
|
|
19 |
q3widgetstack \
|
|
20 |
q3wizard \
|
|
21 |
q3listbox \
|
|
22 |
q3table \
|
|
23 |
q3textedit \
|
|
24 |
q3widgets
|
|
25 |
|
|
26 |
INCLUDEPATH += . \
|
|
27 |
q3iconview \
|
|
28 |
q3listview \
|
|
29 |
q3mainwindow \
|
|
30 |
q3toolbar \
|
|
31 |
q3widgetstack \
|
|
32 |
q3wizard \
|
|
33 |
q3listbox \
|
|
34 |
q3table \
|
|
35 |
q3textedit \
|
|
36 |
q3widgets
|
|
37 |
|
|
38 |
|
|
39 |
SOURCES += qt3supportwidgets.cpp
|
|
40 |
|
|
41 |
# Input
|
|
42 |
HEADERS += q3iconview/q3iconview_extrainfo.h \
|
|
43 |
q3iconview/q3iconview_plugin.h \
|
|
44 |
q3listview/q3listview_extrainfo.h \
|
|
45 |
q3listview/q3listview_plugin.h \
|
|
46 |
q3mainwindow/q3mainwindow_container.h \
|
|
47 |
q3mainwindow/q3mainwindow_plugin.h \
|
|
48 |
q3toolbar/q3toolbar_extrainfo.h \
|
|
49 |
q3toolbar/q3toolbar_plugin.h \
|
|
50 |
q3widgetstack/q3widgetstack_container.h \
|
|
51 |
q3widgetstack/q3widgetstack_plugin.h \
|
|
52 |
q3widgetstack/qdesigner_q3widgetstack_p.h \
|
|
53 |
q3wizard/q3wizard_container.h \
|
|
54 |
q3wizard/q3wizard_plugin.h \
|
|
55 |
q3listbox/q3listbox_extrainfo.h \
|
|
56 |
q3listbox/q3listbox_plugin.h \
|
|
57 |
q3table/q3table_extrainfo.h \
|
|
58 |
q3table/q3table_plugin.h \
|
|
59 |
q3textedit/q3textedit_extrainfo.h \
|
|
60 |
q3textedit/q3textedit_plugin.h \
|
|
61 |
q3widgets/q3widget_plugins.h \
|
|
62 |
|
|
63 |
SOURCES += q3iconview/q3iconview_extrainfo.cpp \
|
|
64 |
q3iconview/q3iconview_plugin.cpp \
|
|
65 |
q3listview/q3listview_extrainfo.cpp \
|
|
66 |
q3listview/q3listview_plugin.cpp \
|
|
67 |
q3mainwindow/q3mainwindow_container.cpp \
|
|
68 |
q3mainwindow/q3mainwindow_plugin.cpp \
|
|
69 |
q3toolbar/q3toolbar_extrainfo.cpp \
|
|
70 |
q3toolbar/q3toolbar_plugin.cpp \
|
|
71 |
q3widgetstack/q3widgetstack_container.cpp \
|
|
72 |
q3widgetstack/q3widgetstack_plugin.cpp \
|
|
73 |
q3widgetstack/qdesigner_q3widgetstack.cpp \
|
|
74 |
q3wizard/q3wizard_container.cpp \
|
|
75 |
q3wizard/q3wizard_plugin.cpp \
|
|
76 |
q3listbox/q3listbox_extrainfo.cpp \
|
|
77 |
q3listbox/q3listbox_plugin.cpp \
|
|
78 |
q3table/q3table_extrainfo.cpp \
|
|
79 |
q3table/q3table_plugin.cpp \
|
|
80 |
q3textedit/q3textedit_extrainfo.cpp \
|
|
81 |
q3textedit/q3textedit_plugin.cpp \
|
|
82 |
q3widgets/q3widget_plugins.cpp
|