aboutsummaryrefslogtreecommitdiffstats
path: root/static.pro
diff options
context:
space:
mode:
authorJake Petroules <jake.petroules@qt.io>2017-04-26 16:29:13 -0700
committerJake Petroules <jake.petroules@qt.io>2017-05-29 08:56:47 +0000
commit035979a5eb56726001aca6d65757595139324f91 (patch)
tree184459f5dc26211952151fa8483b324ad7d2000c /static.pro
parent2185e6b7e2b2518740ac14268d2bc6b190e30d5c (diff)
Add some third party Python modules for use in dmg module
They are all MIT or BSD 3-clause licensed. They will be used in a followup commit in order to aid in the creation of DMG files on macOS. Change-Id: Icdca2bc8604ee058ea807e9570a3ac9fb6d903d9 Reviewed-by: Lars Knoll <lars.knoll@qt.io> Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
Diffstat (limited to 'static.pro')
-rw-r--r--static.pro9
1 files changed, 8 insertions, 1 deletions
diff --git a/static.pro b/static.pro
index b4f15c784..0b1585a42 100644
--- a/static.pro
+++ b/static.pro
@@ -38,4 +38,11 @@ else: \
share.path = $${installPrefix}/share
examples.files = examples
examples.path = $${share.path}/qbs
-INSTALLS += share examples
+python_bin.files = $$files(src/3rdparty/python/bin/*)
+!isEmpty(QBS_LIBEXEC_INSTALL_DIR): \
+ python_bin.path = $${QBS_LIBEXEC_INSTALL_DIR}
+else: \
+ python_bin.path = $${QBS_INSTALL_PREFIX}/libexec/qbs
+python.files = $$files(src/3rdparty/python/lib/python2.7/site-packages/*)
+python.path = $${share.path}/qbs/python
+INSTALLS += share examples python_bin python