source: trunk/tools/designer/app/app.pro@ 206

Last change on this file since 206 was 197, checked in by rudi, 14 years ago

Added QtDesigner

File size: 670 bytes
Line 
1TEMPLATE = app
2TARGET = designer
3
4CONFIG -= moc
5DESTDIR = $$QT_BUILD_TREE/bin
6
7SOURCES += main.cpp
8INCLUDEPATH += ../designer
9LIBS += -ldesignercore -lqui -lqassistantclient -L$$QT_BUILD_TREE/lib
10win32 {
11 RC_FILE = designer.rc
12 win32-g++* {
13 TARGETDEPS += $$QT_BUILD_TREE/lib/libdesignercore.a
14 } else {
15 TARGETDEPS += $$QT_BUILD_TREE/lib/designercore.lib
16 }
17}
18mac {
19 RC_FILE = designer.icns
20 QMAKE_INFO_PLIST = Info_mac.plist
21 staticlib:CONFIG -= global_init_link_order #yuck
22}
23os2 {
24 RC_FILE = designer_os2.rc
25 TARGETDEPS += $$QT_BUILD_TREE/lib/designercore.lib
26}
27
28target.path=$$bins.path
29INSTALLS += target
Note: See TracBrowser for help on using the repository browser.