blob: a9869ab0fd689ff1cd74fe11f4a127014d3cb15b (
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
|
TEMPLATE = app
CONFIG += qt console warn_on release professional
HEADERS = uic.h \
widgetdatabase.h \
domtool.h \
parser.h \
widgetinterface.h
SOURCES = main.cpp uic.cpp form.cpp object.cpp \
subclassing.cpp embed.cpp\
widgetdatabase.cpp \
domtool.cpp \
parser.cpp
DEFINES += QT_INTERNAL_XML
#include( ../../../src/qt_professional.pri )
TARGET = rbuic
DEFINES += UIC
DESTDIR = /usr/bin
#target.path=$$bins.path
#INSTALLS += target
|