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.
27 lines
551 B
27 lines
551 B
13 years ago
|
TEMPLATE = app
|
||
|
TARGET = designer
|
||
|
|
||
|
CONFIG -= moc
|
||
|
DESTDIR = $$QT_BUILD_TREE/bin
|
||
|
|
||
|
SOURCES += main.cpp
|
||
|
INCLUDEPATH += ../designer
|
||
|
LIBS += -ldesignercore -ltqui -lqassistantclient -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
|