forked from qt-creator/qt-creator
Place all plugins in lib/qtcreator/plugins Change-Id: I66606910104b28d91038f5607850ce03bdd1b80f Reviewed-by: Christian Kandeler <christian.kandeler@digia.com> Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@digia.com>
19 lines
490 B
Plaintext
19 lines
490 B
Plaintext
include(../../qtcreator.pri)
|
|
include(qttestrpath.pri)
|
|
|
|
isEmpty(TEMPLATE):TEMPLATE=app
|
|
QT += testlib
|
|
CONFIG += qt warn_on console depend_includepath testcase
|
|
CONFIG -= app_bundle
|
|
|
|
DEFINES -= QT_NO_CAST_FROM_ASCII
|
|
# prefix test binary with tst_
|
|
!contains(TARGET, ^tst_.*):TARGET = $$join(TARGET,,"tst_")
|
|
|
|
win32 {
|
|
lib = $$IDE_LIBRARY_PATH;$$IDE_PLUGIN_PATH
|
|
lib ~= s,/,\\,g
|
|
# the below gets added to later by testcase.prf
|
|
check.commands = cd . & set PATH=$$lib;%PATH%& cmd /c
|
|
}
|