aboutsummaryrefslogtreecommitdiffstats
path: root/qtinfo.py
diff options
context:
space:
mode:
authorRoman Lacko <backup.rlacko@gmail.com>2012-06-07 08:34:11 +0200
committerRoman Lacko <backup.rlacko@gmail.com>2012-06-07 08:34:11 +0200
commit66b90adc1bb48b70fe6456b1f00cb1c4682c7070 (patch)
tree2c09e8c3ca1ca8a7f076133b0f5fa2f76ff9ff4d /qtinfo.py
parent8123eef67f9c5e239a22b33b0ff32bbb502e9dc5 (diff)
new --standalone option, when enabled, package qt libs on linux
Diffstat (limited to 'qtinfo.py')
-rw-r--r--qtinfo.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/qtinfo.py b/qtinfo.py
index 1369bff6d..e638f90af 100644
--- a/qtinfo.py
+++ b/qtinfo.py
@@ -18,6 +18,9 @@ class QtInfo(object):
def getBinsPath(self):
return self.getProperty("QT_INSTALL_BINS")
+ def getLibsPath(self):
+ return self.getProperty("QT_INSTALL_LIBS")
+
def getPluginsPath(self):
return self.getProperty("QT_INSTALL_PLUGINS")
@@ -45,6 +48,7 @@ class QtInfo(object):
version = property(getVersion)
bins_dir = property(getBinsPath)
+ libs_dir = property(getLibsPath)
plugins_dir = property(getPluginsPath)
qmake_path = property(getQMakePath)
imports_dir = property(getImportsPath)