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:
authorMichel Selten <michel@mselten.demon.nl>2004-04-12 02:28:16 +0400
committerMichel Selten <michel@mselten.demon.nl>2004-04-12 02:28:16 +0400
commitb78641f524936785b39704e2c0b6b70c03d9f2b5 (patch)
tree309d9a9975884021dfb71751a3b26a1982c066fc /SConstruct
parent29bbd900477e26a0f485d07ded824ca98f360e3e (diff)
SCons updates
* Links on Cygwin now. Blender has trouble in starting up though. That's the next step.
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct2
1 files changed, 2 insertions, 0 deletions
diff --git a/SConstruct b/SConstruct
index 4f60ef31099..9ef4d8d3979 100644
--- a/SConstruct
+++ b/SConstruct
@@ -1006,6 +1006,8 @@ if user_options_dict['BUILD_BLENDER_DYNAMIC'] == 1:
dy_blender.Program (target='blender',
source=d_obj + ['source/icons/winblender.res'])
else:
+ if sys.platform == 'cygwin':
+ dy_blender.Replace (CC='g++')
dy_blender.Program (target='blender', source=d_obj)
if user_options_dict['BUILD_BLENDER_STATIC'] == 1:
st_blender = link_env.Copy ()