Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNathan Letwory <nathan@letworyinteractive.com>2009-11-03 02:55:04 +0300
committerNathan Letwory <nathan@letworyinteractive.com>2009-11-03 02:55:04 +0300
commit46487ad59eb9811c863c080e78b265900ed3e4ec (patch)
tree4728bbf0d83c59ccb567bf6fcd409a5d32683b8f /SConstruct
parent5ff7cbd2f9426476dcedd25404804c60eae1f02b (diff)
== COLLADA ==
* fix win64 build and add proper library usage for COLLADA 64bit. Update also lib/win64 (r24263).
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct5
1 files changed, 4 insertions, 1 deletions
diff --git a/SConstruct b/SConstruct
index cb90c2eaf66..e6dd85e8cff 100644
--- a/SConstruct
+++ b/SConstruct
@@ -124,7 +124,10 @@ if toolset:
#if env:
# btools.SetupSpawn(env)
else:
- env = BlenderEnvironment(ENV = os.environ)
+ if bitness==64 and platform=='win32':
+ env = BlenderEnvironment(ENV = os.environ, MSVS_ARCH='amd64')
+ else:
+ env = BlenderEnvironment(ENV = os.environ)
if not env:
print "Could not create a build environment"