summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRemko Tronçon <git@el-tramo.be>2010-03-28 12:42:31 (GMT)
committerRemko Tronçon <git@el-tramo.be>2010-03-28 12:42:31 (GMT)
commit44dd6bc44854c0e2b0f076d39db9ef3b227ab3aa (patch)
treede96319fb866ac431e52a1b14e0b9970ac24bbce /BuildTools/SCons/Tools/WindowsBundle.py
parent625d6a9f18c2377cdc3180e74b773ce3cbb2dcba (diff)
downloadswift-44dd6bc44854c0e2b0f076d39db9ef3b227ab3aa.zip
swift-44dd6bc44854c0e2b0f076d39db9ef3b227ab3aa.tar.bz2
Removing BuildTools module.
Diffstat (limited to 'BuildTools/SCons/Tools/WindowsBundle.py')
-rw-r--r--BuildTools/SCons/Tools/WindowsBundle.py17
1 files changed, 0 insertions, 17 deletions
diff --git a/BuildTools/SCons/Tools/WindowsBundle.py b/BuildTools/SCons/Tools/WindowsBundle.py
deleted file mode 100644
index bc690af..0000000
--- a/BuildTools/SCons/Tools/WindowsBundle.py
+++ /dev/null
@@ -1,17 +0,0 @@
-import SCons.Util, os
-
-def generate(env) :
- def createWindowsBundle(env, bundle, resources = [], qtimageformats = [], qtlibs = []) :
- env.Install(bundle, bundle + ".exe")
- for lib in qtlibs :
- env.Install(bundle, os.path.join(env["QTDIR"], "bin", lib + ".dll"))
- env.Install(os.path.join(bundle, "imageformats"), [os.path.join(env["QTDIR"], "plugins", "imageformats", "q" + codec + "4.dll") for codec in qtimageformats])
-
- for resource in resources :
- env.Install(bundle, resource)
-
- env.AddMethod(createWindowsBundle, "WindowsBundle")
-
-def exists(env) :
- return env["PLATFORM"] == "win32"
-