forked from qt-creator/qt-creator
instead of directly including the respective pri files in *_dependencies.pri, set variables and let qtcreator.pri resolve them to includes. this will allow us to re-use the dependency info elsewhere. Change-Id: Iaa33924e428ac0409660f42df2f98a7978452d3e Reviewed-by: Eike Ziller <eike.ziller@digia.com> Reviewed-by: Tobias Hunger <tobias.hunger@digia.com> Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@digia.com>
31 lines
813 B
Prolog
31 lines
813 B
Prolog
TARGET = pluginspec
|
|
|
|
# Input
|
|
SOURCES += tst_pluginspec.cpp
|
|
|
|
OTHER_FILES += \
|
|
$$PWD/testspecs/simplespec.xml \
|
|
$$PWD/testspecs/simplespec_experimental.xml \
|
|
$$PWD/testspecs/spec1.xml \
|
|
$$PWD/testspecs/spec2.xml \
|
|
$$PWD/testspecs/spec_wrong1.xml \
|
|
$$PWD/testspecs/spec_wrong2.xml \
|
|
$$PWD/testspecs/spec_wrong3.xml \
|
|
$$PWD/testspecs/spec_wrong4.xml \
|
|
$$PWD/testspecs/spec_wrong5.xml \
|
|
$$PWD/testdependencies/spec1.xml \
|
|
$$PWD/testdependencies/spec2.xml \
|
|
$$PWD/testdependencies/spec3.xml \
|
|
$$PWD/testdependencies/spec4.xml \
|
|
$$PWD/testdependencies/spec5.xml \
|
|
$$PWD/testdir/spec.xml
|
|
|
|
QTC_LIB_DEPENDS += extensionsystem
|
|
include(../../qttest.pri)
|
|
|
|
DEFINES += "PLUGINSPEC_DIR=\\\"$$PWD\\\""
|
|
|
|
COPYDIR = $$OUT_PWD
|
|
COPYFILES = $$OTHER_FILES
|
|
include(../copy.pri)
|