aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/pythonextensions/pythonextensions_dependencies.pri
diff options
context:
space:
mode:
authorTilman Roeder <tilman.roder@qt.io>2018-08-03 09:38:07 +0200
committerTilman Roeder <tilman.roder@qt.io>2018-08-15 10:10:16 +0000
commit13e02b9aaea19ac21251d152a8fa69336ae76ebd (patch)
treea6320449c18251033d3a2557afaed6a8fcafbfc9 /plugins/pythonextensions/pythonextensions_dependencies.pri
parentefea0c2e4a2966d88f65cdab90f841f7905dee14 (diff)
Initial commit
This is a quite large commit containing: * The main extension that runs and initializes Python * Some (example) bindings * An initial build script for the main extension * Optional binding and examples of how to create them * An initial build script for the optional bindings * A simple extension manager written in Python * A few example Python extensions * Some documentation (both in the code and as markdown files) * A collection of helpful python scripts * A small collection of unit tests * A TODO list For any additional details the code / docs should be consulted. Change-Id: I3937886cfefa2f64d5a78013889a8e097eec8261 Reviewed-by: Eike Ziller <eike.ziller@qt.io>
Diffstat (limited to 'plugins/pythonextensions/pythonextensions_dependencies.pri')
-rw-r--r--plugins/pythonextensions/pythonextensions_dependencies.pri12
1 files changed, 12 insertions, 0 deletions
diff --git a/plugins/pythonextensions/pythonextensions_dependencies.pri b/plugins/pythonextensions/pythonextensions_dependencies.pri
new file mode 100644
index 0000000..4a0b56e
--- /dev/null
+++ b/plugins/pythonextensions/pythonextensions_dependencies.pri
@@ -0,0 +1,12 @@
+# Declare dependencies
+
+QTC_PLUGIN_NAME = PythonExtensions
+QTC_LIB_DEPENDS += \
+ extensionsystem \
+ utils
+
+QTC_PLUGIN_DEPENDS += \
+ coreplugin
+
+QTC_PLUGIN_RECOMMENDS += \
+ # optional plugin dependencies. nothing here at this time