blob: c77607d158c42f2d42d21128f1dd3e637979a62f (
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
33
34
35
36
37
38
39
40
41
42
|
TEMPLATE = app
CONFIG += qt console warn_on release professional
HEADERS = uic.h \
../shared/widgetdatabase.h \
../shared/domtool.h \
../shared/parser.h \
../interfaces/widgetinterface.h
#HEADERS += ../shared/ui2uib.h \
# ../shared/uib.h
SOURCES = main.cpp uic.cpp form.cpp object.cpp \
subclassing.cpp embed.cpp\
../shared/widgetdatabase.cpp \
../shared/domtool.cpp \
../shared/parser.cpp
#SOURCES += ../shared/ui2uib.cpp \
# ../shared/uib.cpp
DEFINES += QT_INTERNAL_XML
include( ../../../src/qt_professional.pri )
TARGET = uic-tqt
INCLUDEPATH += ../shared
DEFINES += UIC
DESTDIR = ../../../bin
target.path=$$bins.path
INSTALLS += target
*-mwerks {
TEMPLATE = lib
TARGET = McUic
CONFIG -= static
CONFIG += shared plugin
DEFINES += UIC_MWERKS_PLUGIN
MWERKSDIR = $(QT_SOURCE_TREE)/util/mwerks_plugin
INCLUDEPATH += $$MWERKSDIR/Headers
LIBS += $$MWERKSDIR/Libraries/PluginLib4.shlb
SOURCES += mwerks_mac.cpp
}
|