You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
526 B
29 lines
526 B
13 years ago
|
|
||
|
TEMPLATE = app
|
||
|
INCLUDEPATH += .
|
||
|
|
||
|
CONFIG += qt warn_on
|
||
|
|
||
|
exists( $(QTDIR)/lib/libqt-mt* ) {
|
||
|
CONFIG += thread
|
||
|
}
|
||
|
|
||
|
DEFINES += UIC QT_INTERNAL_XML
|
||
|
|
||
|
# Input
|
||
|
HEADERS += domtool.h \
|
||
|
globaldefs.h \
|
||
|
parser.h \
|
||
|
uic.h \
|
||
|
widgetdatabase.h \
|
||
|
widgetinterface.h
|
||
|
SOURCES += domtool.cpp \
|
||
|
embed.cpp \
|
||
|
form.cpp \
|
||
|
main.cpp \
|
||
|
object.cpp \
|
||
|
parser.cpp \
|
||
|
subclassing.cpp \
|
||
|
uic.cpp \
|
||
|
widgetdatabase.cpp
|