blob: bbb592c602390a0c9e8440dbdb4706b66e36c35d (
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
|
TEMPLATE = app
TARGET = designer
CONFIG -= tqmoc
DESTDIR = $$QT_BUILD_TREE/bin
SOURCES += main.cpp
INCLUDEPATH += ../designer
LIBS += -ldesignercore -lqui -ltqassistantclient -L$$QT_BUILD_TREE/lib
win32 {
RC_FILE = designer.rc
win32-g++ {
TARGETDEPS += $$QT_BUILD_TREE/lib/libdesignercore.a
} else {
TARGETDEPS += $$QT_BUILD_TREE/lib/designercore.lib
}
}
mac {
RC_FILE = designer.icns
QMAKE_INFO_PLIST = Info_mac.plist
staticlib:CONFIG -= global_init_link_order #yuck
}
target.path=$$bins.path
INSTALLS += target
|