source: trunk/mkspecs/features/uitools.prf@ 433

Last change on this file since 433 was 96, checked in by Dmitry A. Kuminov, 16 years ago

qmake: When using debug-and-release mode on OS/2, debug versions of Qt DLLs get the "d" suffix (QtGuid4.dll) etc to let them to co-exist in the same lib/bin directory (similar to Win32 and Mac platforms).

File size: 322 bytes
Line 
1QT += xml
2qt:load(qt)
3
4# Include the correct version of the UiLoader library
5QTUITOOLS_LINKAGE = -lQtUiTools
6CONFIG(debug, debug|release) {
7 mac: QTUITOOLS_LINKAGE = -lQtUiTools_debug
8 win32|os2: QTUITOOLS_LINKAGE = -lQtUiToolsd
9}
10LIBS += $$QTUITOOLS_LINKAGE
11
12INCLUDEPATH = $$QMAKE_INCDIR_QT/QtUiTools $$INCLUDEPATH
Note: See TracBrowser for help on using the repository browser.