From 88446eeca4b6f9d31928a538e3a39d04f1d06976 Mon Sep 17 00:00:00 2001 From: Nathan Letwory Date: Wed, 18 Oct 2006 05:45:47 +0000 Subject: Patch 5105 by Joshua Leung (Aligorith), slightly modified by me * Add WITH_BF_YAFRAY, which per default is 'true', so no visible changes for developers (and users). Set WITH_BF_YAFRAY to 'false', and you'll save some major compile time :) Also handy if you're strapped for memory and compilation fails on yafray compilation due to this. - this commit also has a few whitespace changes and - made BF_NO_ELBEEM a proper BoolOption. This will be renamed to WITH_BF_ELBEEM in the near future... --- intern/SConscript | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'intern/SConscript') diff --git a/intern/SConscript b/intern/SConscript index ecb7f29fab6..f6092b7bd02 100644 --- a/intern/SConscript +++ b/intern/SConscript @@ -20,10 +20,10 @@ SConscript(['SoundSystem/SConscript', # perhaps get rid of intern/csg? NEW_CSG='false' -if env['BF_NO_ELBEEM'] == 'false': - SConscript(['elbeem/SConscript']) +if env['BF_NO_ELBEEM'] == 0: + SConscript(['elbeem/SConscript']) if NEW_CSG=='false': - SConscript(['bsp/SConscript']) + SConscript(['bsp/SConscript']) else: - SConscript(['csg/SConscript']) + SConscript(['csg/SConscript']) -- cgit v1.2.3