aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/texteditor/texteditor_dependencies.pri
diff options
context:
space:
mode:
authorOswald Buddenhagen <oswald.buddenhagen@digia.com>2013-03-25 19:09:49 +0100
committerOswald Buddenhagen <oswald.buddenhagen@digia.com>2013-04-03 14:37:45 +0200
commit66a3553107a43f56372f756b218e268e71390d19 (patch)
tree8e3f7d31f29d3760ba450f7ed6caf4da6ebed12f /src/plugins/texteditor/texteditor_dependencies.pri
parentc320f65d1cd58f86061c09cf5992603e26af5871 (diff)
make library and plugin dependencies declarative
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>
Diffstat (limited to 'src/plugins/texteditor/texteditor_dependencies.pri')
-rw-r--r--src/plugins/texteditor/texteditor_dependencies.pri11
1 files changed, 7 insertions, 4 deletions
diff --git a/src/plugins/texteditor/texteditor_dependencies.pri b/src/plugins/texteditor/texteditor_dependencies.pri
index 5012cea9ffe..0d4d168776e 100644
--- a/src/plugins/texteditor/texteditor_dependencies.pri
+++ b/src/plugins/texteditor/texteditor_dependencies.pri
@@ -1,4 +1,7 @@
-include(../../libs/utils/utils.pri)
-include(../../plugins/find/find.pri)
-include(../../plugins/locator/locator.pri)
-include(../../plugins/coreplugin/coreplugin.pri)
+QTC_PLUGIN_NAME = TextEditor
+QTC_LIB_DEPENDS += \
+ utils
+QTC_PLUGIN_DEPENDS += \
+ find \
+ locator \
+ coreplugin