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:
authorKent Mein <mein@cs.umn.edu>2008-01-19 00:39:47 +0300
committerKent Mein <mein@cs.umn.edu>2008-01-19 00:39:47 +0300
commit320ac3f0e289b2c4d8add38926913eb2d4809f55 (patch)
tree07a0aa4716ba36761135b5cc45c635c1b7036aad /source/creator/SConscript
parent3df9587b40b109b97fd674cc03ab6d1801ae3e24 (diff)
Fixing makefiles for binreloc I made it use flags like other
things default on for linux. ideasman helped me get scons working. Cmake still needs some love... Kent
Diffstat (limited to 'source/creator/SConscript')
-rw-r--r--source/creator/SConscript5
1 files changed, 3 insertions, 2 deletions
diff --git a/source/creator/SConscript b/source/creator/SConscript
index b09229a1641..833b56eccd8 100644
--- a/source/creator/SConscript
+++ b/source/creator/SConscript
@@ -15,7 +15,8 @@ if env['WITH_BF_QUICKTIME']==1:
incs += ' ' + env['BF_QUICKTIME_INC']
defs.append('WITH_QUICKTIME')
-if env['OURPLATFORM'] == 'linux2':
- incs += ' ../../extern/binreloc/include'
+if env['WITH_BF_BINRELOC']==1:
+ incs += ' ../../extern/binreloc/include'
+ defs.append('WITH_BINRELOC')
env.BlenderLib ( libname = 'blender_creator', sources = Split(sources), includes = Split(incs), defines = defs, libtype='core', priority = 1 )