blob: f58df8a388b46e00a4c8b6923416ac6b7924e30f (
plain)
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
|
TARGET = $$qtLibraryTarget(qaxwidget)
TEMPLATE = lib
QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/designer
CONFIG += qt warn_on qaxcontainer plugin designer debug_and_release
build_all:!build_pass {
CONFIG -= build_all
CONFIG += release
}
INCLUDEPATH += $$QT_SOURCE_TREE/src/activeqt/shared/ \
$$QT_BUILD_TREE/src/activeqt/container \
../../lib/uilib
# Input
SOURCES += qaxwidgetextrainfo.cpp \
qaxwidgetplugin.cpp \
qdesigneraxwidget.cpp \
qaxwidgetpropertysheet.cpp \
qaxwidgettaskmenu.cpp \
$$QT_SOURCE_TREE/src/activeqt/shared/qaxtypes.cpp
HEADERS += qaxwidgetextrainfo.h \
qaxwidgetplugin.h \
qdesigneraxwidget.h \
qaxwidgetpropertysheet.h \
qaxwidgettaskmenu.h \
$$QT_SOURCE_TREE/src/activeqt/shared/qaxtypes.h
# install
target.path = $$[QT_INSTALL_PLUGINS]/designer
INSTALLS += target
|