aboutsummaryrefslogtreecommitdiffstats
path: root/qtinfo.py
diff options
context:
space:
mode:
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)