diff options
author | Remko Tronçon <git@el-tramo.be> | 2010-10-10 16:21:26 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2010-10-10 16:24:52 (GMT) |
commit | 07a383639f9412761f8f3d1280e79358080736b2 (patch) | |
tree | 9af3989923ac1c94f5f4c328de1a7fa10b70fe8f | |
parent | 3760140b77f1cf568a7cdf824502ff6568e62fc1 (diff) | |
download | swift-contrib-07a383639f9412761f8f3d1280e79358080736b2.zip swift-contrib-07a383639f9412761f8f3d1280e79358080736b2.tar.bz2 |
Added missing QtDBus module to SConscript.
-rw-r--r-- | Swift/QtUI/SConscript | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Swift/QtUI/SConscript b/Swift/QtUI/SConscript index 3d4fc9f..78579a6 100644 --- a/Swift/QtUI/SConscript +++ b/Swift/QtUI/SConscript @@ -45,7 +45,10 @@ myenv.MergeFlags(myenv["PLATFORM_FLAGS"]) myenv.Tool("qt4", toolpath = ["#/BuildTools/SCons/Tools"]) myenv.Tool("nsis", toolpath = ["#/BuildTools/SCons/Tools"]) -myenv.EnableQt4Modules(['QtCore', 'QtGui', 'QtWebKit'], debug = False) +qt4modules = ['QtCore', 'QtGui', 'QtWebKit'] +if env["PLATFORM"] == "posix" : + qt4modules += ["QtDBus"] +myenv.EnableQt4Modules(qt4modules, debug = False) myenv.Append(CPPPATH = ["."]) |