cff6e39cd1
MinGW installations on case-sensitive filesystems expect lowercase names of include-libraries and (usually) include files. When crosscompiling on Debian 6 (targeting MS Windows) linking fails because mingw is looking for non-existent include-libraries. Using lowercase names solves this. Change-Id: Id3454f4ed8ba42b6ea93d65d9c0ce567db6712df Reviewed-by: Friedemann Kleint <Friedemann.Kleint@nokia.com> Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
20 lines
532 B
Prolog
20 lines
532 B
Prolog
CONFIG += testcase
|
|
TARGET = tst_qgraphicsscene
|
|
QT += widgets widgets-private testlib
|
|
QT += core-private gui-private
|
|
SOURCES += tst_qgraphicsscene.cpp
|
|
RESOURCES += images.qrc
|
|
win32:!wince*: LIBS += -luser32
|
|
|
|
!wince*:DEFINES += SRCDIR=\\\"$$PWD\\\"
|
|
DEFINES += QT_NO_CAST_TO_ASCII
|
|
|
|
wince* {
|
|
rootFiles.files = Ash_European.jpg graphicsScene_selection.data
|
|
rootFiles.path = .
|
|
renderFiles.files = testData\\render\\*
|
|
renderFiles.path = testData\\render
|
|
DEPLOYMENT += rootFiles renderFiles
|
|
DEFINES += SRCDIR=\\\".\\\"
|
|
}
|