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>
18 lines
397 B
Prolog
18 lines
397 B
Prolog
TEMPLATE = lib
|
|
DEFINES += MYPLUGIN_LIBRARY
|
|
SOURCES += testplugin.cpp
|
|
HEADERS += testplugin.h testplugin_global.h
|
|
|
|
OTHER_FILES += testplugin.xml
|
|
|
|
QTC_LIB_DEPENDS += extensionsystem
|
|
include(../../../../../qtcreator.pri)
|
|
include(../../../qttestrpath.pri)
|
|
|
|
COPYDIR = $$OUT_PWD
|
|
COPYFILES = $$PWD/testplugin.xml
|
|
include(../../copy.pri)
|
|
|
|
TARGET = $$qtLibraryName(test)
|
|
CONFIG -= debug_and_release_target
|