3 # ***** BEGIN GPL LICENSE BLOCK *****
5 # This program is free software; you can redistribute it and/or
6 # modify it under the terms of the GNU General Public License
7 # as published by the Free Software Foundation; either version 2
8 # of the License, or (at your option) any later version.
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
15 # You should have received a copy of the GNU General Public License
16 # along with this program; if not, write to the Free Software Foundation,
17 # Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19 # The Original Code is Copyright (C) 2006, Blender Foundation
20 # All rights reserved.
22 # The Original Code is: all of this file.
24 # Contributor(s): Nathan Letwory.
26 # ***** END GPL LICENSE BLOCK *****
28 # Main entry-point for the SCons building system
29 # Set up some custom actions and target/argument handling
30 # Then read all SConscripts and build
39 from tempfile import mkdtemp
45 EnsureSConsVersion(1,0,0)
47 BlenderEnvironment = tools.Blender.BlenderEnvironment
52 platform = sys.platform
57 ##### BEGIN SETUP #####
59 B.possible_types = ['core', 'common', 'blender', 'intern',
60 'international', 'game', 'game2',
61 'player', 'player2', 'system']
63 B.binarykind = ['blender' , 'blenderplayer']
64 ##################################
65 # target and argument validation #
66 ##################################
67 # XX cheating for BF_FANCY, we check for BF_FANCY before args are validated
68 use_color = ARGUMENTS.get('BF_FANCY', '1')
72 if not use_color=='1':
75 #on defaut white Os X terminal, some colors are totally unlegible
76 if platform=='darwin':
77 B.bc.OKGREEN = '\033[34m'
78 B.bc.WARNING = '\033[36m'
81 print B.bc.HEADER+'Command-line arguments'+B.bc.ENDC
82 B.arguments = btools.validate_arguments(ARGUMENTS, B.bc)
83 btools.print_arguments(B.arguments, B.bc)
86 print B.bc.HEADER+'Command-line targets'+B.bc.ENDC
87 B.targets = btools.validate_targets(COMMAND_LINE_TARGETS, B.bc)
88 btools.print_targets(B.targets, B.bc)
90 ##########################
91 # setting up environment #
92 ##########################
94 # handling cmd line arguments & config file
96 # first check cmdline for toolset and we create env to work on
97 quickie = B.arguments.get('BF_QUICK', None)
98 quickdebug = B.arguments.get('BF_QUICKDEBUG', None)
101 B.quickdebug=string.split(quickdebug, ',')
106 B.quickie=string.split(quickie,',')
110 toolset = B.arguments.get('BF_TOOLSET', None)
112 print "Using " + toolset
113 if toolset=='mstoolkit':
114 env = BlenderEnvironment(ENV = os.environ)
115 env.Tool('mstoolkit', ['tools'])
117 env = BlenderEnvironment(tools=[toolset], ENV = os.environ)
118 # xxx commented out, as was supressing warnings under mingw..
120 # btools.SetupSpawn(env)
122 env = BlenderEnvironment(ENV = os.environ)
125 print "Could not create a build environment"
129 cc = B.arguments.get('CC', None)
130 cxx = B.arguments.get('CXX', None)
136 if env['CC'] in ['cl', 'cl.exe'] and sys.platform=='win32':
137 platform = 'win32-vc'
138 elif env['CC'] in ['gcc'] and sys.platform=='win32':
139 platform = 'win32-mingw'
141 env.SConscriptChdir(0)
143 crossbuild = B.arguments.get('BF_CROSS', None)
144 if crossbuild and platform!='win32':
145 platform = 'linuxcross'
147 env['OURPLATFORM'] = platform
149 configfile = 'config'+os.sep+platform+'-config.py'
151 if os.path.exists(configfile):
152 print B.bc.OKGREEN + "Using config file: " + B.bc.ENDC + configfile
154 print B.bc.FAIL + configfile + " doesn't exist" + B.bc.ENDC
156 if crossbuild and env['PLATFORM'] != 'win32':
157 print B.bc.HEADER+"Preparing for crossbuild"+B.bc.ENDC
158 env.Tool('crossmingw', ['tools'])
159 # todo: determine proper libs/includes etc.
160 # Needed for gui programs, console programs should do without it
161 env.Append(LINKFLAGS=['-mwindows'])
163 userconfig = B.arguments.get('BF_CONFIG', 'user-config.py')
164 # first read platform config. B.arguments will override
165 optfiles = [configfile]
166 if os.path.exists(userconfig):
167 print B.bc.OKGREEN + "Using user-config file: " + B.bc.ENDC + userconfig
168 optfiles += [userconfig]
170 print B.bc.WARNING + userconfig + " not found, no user overrides" + B.bc.ENDC
172 opts = btools.read_opts(optfiles, B.arguments)
175 if not env['BF_FANCY']:
178 SetOption('num_jobs', int(env['BF_NUMJOBS']))
179 print "Build with %d parallel jobs" % (GetOption('num_jobs'))
181 # disable elbeem (fluidsim) compilation?
182 if env['BF_NO_ELBEEM'] == 1:
183 env['CPPFLAGS'].append('-DDISABLE_ELBEEM')
184 env['CXXFLAGS'].append('-DDISABLE_ELBEEM')
185 env['CCFLAGS'].append('-DDISABLE_ELBEEM')
187 if env['WITH_BF_OPENMP'] == 1:
188 if env['OURPLATFORM']=='win32-vc':
189 env['CCFLAGS'].append('/openmp')
190 env['CPPFLAGS'].append('/openmp')
191 env['CXXFLAGS'].append('/openmp')
193 if env['CC'][-3:] == 'icc': # to be able to handle CC=/opt/bla/icc case
194 env.Append(LINKFLAGS=['-openmp', '-static-intel'])
195 env['CCFLAGS'].append('-openmp')
196 env['CPPFLAGS'].append('-openmp')
197 env['CXXFLAGS'].append('-openmp')
199 env.Append(CCFLAGS=['-fopenmp'])
200 env.Append(CPPFLAGS=['-fopenmp'])
201 env.Append(CXXFLAGS=['-fopenmp'])
202 # env.Append(LINKFLAGS=['-fprofile-generate'])
204 #check for additional debug libnames
206 if env.has_key('BF_DEBUG_LIBS'):
207 B.quickdebug += env['BF_DEBUG_LIBS']
209 printdebug = B.arguments.get('BF_LISTDEBUG', 0)
211 # see if this linux distro has libalut
213 if env['OURPLATFORM'] == 'linux2' :
214 if env['WITH_BF_OPENAL']:
215 mylib_test_source_file = """
217 int main(int argc, char **argv)
219 alutGetMajorVersion();
224 def CheckFreeAlut(context,env):
225 context.Message( B.bc.OKGREEN + "Linux platform detected:\n checking for FreeAlut... " + B.bc.ENDC )
227 result = context.TryLink(mylib_test_source_file, '.c')
228 context.Result(result)
231 env2 = env.Clone( LIBPATH = env['BF_OPENAL'] )
232 sconf_temp = mkdtemp()
233 conf = Configure( env2, {'CheckFreeAlut' : CheckFreeAlut}, sconf_temp, '/dev/null' )
234 if conf.CheckFreeAlut( env2 ):
235 env['BF_OPENAL_LIB'] += ' alut'
238 for root, dirs, files in os.walk(sconf_temp, topdown=False):
240 os.remove(os.path.join(root, name))
242 os.rmdir(os.path.join(root, name))
243 if root: os.rmdir(root)
245 if len(B.quickdebug) > 0 and printdebug != 0:
246 print B.bc.OKGREEN + "Buildings these libs with debug symbols:" + B.bc.ENDC
247 for l in B.quickdebug:
250 # remove stdc++ from LLIBS if we are building a statc linked CXXFLAGS
251 if env['WITH_BF_STATICCXX']:
252 if 'stdc++' in env['LLIBS']:
253 env['LLIBS'].remove('stdc++')
255 print '\tcould not remove stdc++ library from LLIBS, WITH_BF_STATICCXX may not work for your platform'
257 # check target for blenderplayer. Set WITH_BF_PLAYER if found on cmdline
258 if 'blenderplayer' in B.targets:
259 env['WITH_BF_PLAYER'] = True
261 if 'blendernogame' in B.targets:
262 env['WITH_BF_GAMEENGINE'] = False
264 if 'blenderlite' in B.targets:
265 env['WITH_BF_GAMEENGINE'] = False
266 env['WITH_BF_OPENAL'] = False
267 env['WITH_BF_OPENEXR'] = False
268 env['WITH_BF_ICONV'] = False
269 env['WITH_BF_INTERNATIONAL'] = False
270 env['WITH_BF_OPENJPEG'] = False
271 env['WITH_BF_FFMPEG'] = False
272 env['WITH_BF_QUICKTIME'] = False
273 env['WITH_BF_YAFRAY'] = False
274 env['WITH_BF_REDCODE'] = False
275 env['WITH_BF_FTGL'] = False
276 env['WITH_BF_DDS'] = False
277 env['WITH_BF_ZLIB'] = False
278 env['WITH_BF_SDL'] = False
279 env['WITH_BF_JPEG'] = False
280 env['WITH_BF_PNG'] = False
281 env['WITH_BF_ODE'] = False
282 env['WITH_BF_BULLET'] = False
283 env['WITH_BF_BINRELOC'] = False
284 env['BF_BUILDINFO'] = False
285 env['BF_NO_ELBEEM'] = True
286 env['WITH_BF_PYTHON'] = False
288 # lastly we check for root_build_dir ( we should not do before, otherwise we might do wrong builddir
289 #B.root_build_dir = B.arguments.get('BF_BUILDDIR', '..'+os.sep+'build'+os.sep+platform+os.sep)
290 B.root_build_dir = env['BF_BUILDDIR']
291 B.doc_build_dir = env['BF_DOCDIR']
292 if not B.root_build_dir[-1]==os.sep:
293 B.root_build_dir += os.sep
294 if not B.doc_build_dir[-1]==os.sep:
295 B.doc_build_dir += os.sep
297 # We do a shortcut for clean when no quicklist is given: just delete
298 # builddir without reading in SConscripts
300 if 'clean' in B.targets:
303 if not quickie and do_clean:
304 if os.path.exists(B.doc_build_dir):
305 print B.bc.HEADER+'Cleaning doc dir...'+B.bc.ENDC
306 dirs = os.listdir(B.doc_build_dir)
308 if os.path.isdir(B.doc_build_dir + entry) == 1:
309 print "clean dir %s"%(B.doc_build_dir+entry)
310 shutil.rmtree(B.doc_build_dir+entry)
312 print "remove file %s"%(B.doc_build_dir+entry)
313 os.remove(B.root_build_dir+entry)
314 if os.path.exists(B.root_build_dir):
315 print B.bc.HEADER+'Cleaning build dir...'+B.bc.ENDC
316 dirs = os.listdir(B.root_build_dir)
318 if os.path.isdir(B.root_build_dir + entry) == 1:
319 print "clean dir %s"%(B.root_build_dir+entry)
320 shutil.rmtree(B.root_build_dir+entry)
322 print "remove file %s"%(B.root_build_dir+entry)
323 os.remove(B.root_build_dir+entry)
324 for confile in ['extern/ffmpeg/config.mak', 'extern/x264/config.mak',
325 'extern/xvidcore/build/generic/platform.inc', 'extern/ffmpeg/include']:
326 if os.path.exists(confile):
327 print "clean file %s"%confile
328 if os.path.isdir(confile):
329 for root, dirs, files in os.walk(confile):
331 os.remove(os.path.join(root, name))
334 print B.bc.OKGREEN+'...done'+B.bc.ENDC
336 print B.bc.HEADER+'Already Clean, nothing to do.'+B.bc.ENDC
339 if not os.path.isdir ( B.root_build_dir):
340 os.makedirs ( B.root_build_dir )
341 os.makedirs ( B.root_build_dir + 'source' )
342 os.makedirs ( B.root_build_dir + 'intern' )
343 os.makedirs ( B.root_build_dir + 'extern' )
344 os.makedirs ( B.root_build_dir + 'lib' )
345 os.makedirs ( B.root_build_dir + 'bin' )
346 if not os.path.isdir(B.doc_build_dir):
347 os.makedirs ( B.doc_build_dir )
349 Help(opts.GenerateHelpText(env))
351 # default is new quieter output, but if you need to see the
352 # commands, do 'scons BF_QUIET=0'
353 bf_quietoutput = B.arguments.get('BF_QUIET', '1')
355 B.set_quiet_output(env)
360 print B.bc.HEADER+'Building in '+B.bc.ENDC+B.root_build_dir
361 env.SConsignFile(B.root_build_dir+'scons-signatures')
364 ##### END SETUP ##########
368 BuildDir(B.root_build_dir+'/intern', 'intern', duplicate=0)
369 SConscript(B.root_build_dir+'/intern/SConscript')
370 BuildDir(B.root_build_dir+'/extern', 'extern', duplicate=0)
371 SConscript(B.root_build_dir+'/extern/SConscript')
372 BuildDir(B.root_build_dir+'/source', 'source', duplicate=0)
373 SConscript(B.root_build_dir+'/source/SConscript')
375 # now that we have read all SConscripts, we know what
376 # libraries will be built. Create list of
377 # libraries to give as objects to linking phase
379 for tp in B.possible_types:
380 if not tp == 'player' and not tp == 'player2':
381 mainlist += B.create_blender_liblist(env, tp)
383 if B.arguments.get('BF_PRIORITYLIST', '0')=='1':
384 B.propose_priorities()
386 dobj = B.buildinfo(env, "dynamic") + B.resources
387 thestatlibs, thelibincs = B.setup_staticlibs(env)
388 thesyslibs = B.setup_syslibs(env)
390 if 'blender' in B.targets or not env['WITH_BF_NOBLENDER']:
391 env.BlenderProg(B.root_build_dir, "blender", dobj + mainlist + thestatlibs, [], thesyslibs, [B.root_build_dir+'/lib'] + thelibincs, 'blender')
392 if env['WITH_BF_PLAYER']:
393 playerlist = B.create_blender_liblist(env, 'player')
394 env.BlenderProg(B.root_build_dir, "blenderplayer", dobj + playerlist + thestatlibs, [], thesyslibs, [B.root_build_dir+'/lib'] + thelibincs, 'blenderplayer')
396 ##### Now define some targets
399 #------------ INSTALL
403 if env['OURPLATFORM']=='darwin':
404 for prg in B.program_list:
405 bundle = '%s.app' % prg[0]
406 bundledir = os.path.dirname(bundle)
407 for dp, dn, df in os.walk(bundle):
412 dir=env['BF_INSTALLDIR']+dp[len(bundledir):]
413 source=[dp+os.sep+f for f in df]
414 blenderinstall.append(env.Install(dir=dir,source=source))
416 blenderinstall = env.Install(dir=env['BF_INSTALLDIR'], source=B.program_list)
419 #- dont do .blender and scripts for darwin, it is already in the bundle
424 if env['OURPLATFORM']!='darwin':
425 for dp, dn, df in os.walk('bin/.blender'):
432 if not env['WITH_BF_INTERNATIONAL']:
435 if f == '.Blanguages':
437 if not env['WITH_BF_FREETYPE']:
438 if f.endswith('.ttf'):
441 dotblendlist.append(os.path.join(dp, f))
442 dottargetlist.append(env['BF_INSTALLDIR']+dp[3:]+os.sep+f)
444 dotblenderinstall = []
445 for targetdir,srcfile in zip(dottargetlist, dotblendlist):
446 td, tf = os.path.split(targetdir)
447 dotblenderinstall.append(env.Install(dir=td, source=srcfile))
449 if env['WITH_BF_PYTHON']:
451 scriptpath='release/scripts'
452 for dp, dn, df in os.walk(scriptpath):
457 dir=env['BF_INSTALLDIR']+'/.blender/scripts'+dp[len(scriptpath):]
458 source=[dp+os.sep+f for f in df]
459 scriptinstall.append(env.Install(dir=dir,source=source))
462 if env['OURPLATFORM']=='linux2':
466 for tp, tn, tf in os.walk('release/freedesktop/icons'):
472 print ">>>", env['BF_INSTALLDIR'], tp, f
473 iconlist.append(tp+os.sep+f)
474 icontargetlist.append(env['BF_INSTALLDIR']+tp[19:]+os.sep+f)
477 for targetdir,srcfile in zip(icontargetlist, iconlist):
478 td, tf = os.path.split(targetdir)
479 iconinstall.append(env.Install(dir=td, source=srcfile))
481 # dlls for linuxcross
482 # TODO - add more libs, for now this lets blenderlite run
483 if env['OURPLATFORM']=='linuxcross':
484 dir=env['BF_INSTALLDIR']
485 source = ['../lib/windows/pthreads/lib/pthreadGC2.dll']
486 scriptinstall.append(env.Install(dir=dir, source=source))
491 for tp, tn, tf in os.walk('release/plugins'):
497 print ">>>", env['BF_INSTALLDIR'], tp, f
498 pluglist.append(tp+os.sep+f)
499 plugtargetlist.append(env['BF_INSTALLDIR']+tp[7:]+os.sep+f)
501 # header files for plugins
502 pluglist.append('source/blender/blenpluginapi/documentation.h')
503 plugtargetlist.append(env['BF_INSTALLDIR'] + os.sep + 'plugins' + os.sep + 'include' + os.sep +'documentation.h')
504 pluglist.append('source/blender/blenpluginapi/externdef.h')
505 plugtargetlist.append(env['BF_INSTALLDIR'] + os.sep + 'plugins' + os.sep + 'include' + os.sep +'externdef.h')
506 pluglist.append('source/blender/blenpluginapi/floatpatch.h')
507 plugtargetlist.append(env['BF_INSTALLDIR'] + os.sep + 'plugins' + os.sep + 'include' + os.sep +'floatpatch.h')
508 pluglist.append('source/blender/blenpluginapi/iff.h')
509 plugtargetlist.append(env['BF_INSTALLDIR'] + os.sep + 'plugins' + os.sep + 'include' + os.sep +'iff.h')
510 pluglist.append('source/blender/blenpluginapi/plugin.h')
511 plugtargetlist.append(env['BF_INSTALLDIR'] + os.sep + 'plugins' + os.sep + 'include' + os.sep +'plugin.h')
512 pluglist.append('source/blender/blenpluginapi/util.h')
513 plugtargetlist.append(env['BF_INSTALLDIR'] + os.sep + 'plugins' + os.sep + 'include' + os.sep +'util.h')
514 pluglist.append('source/blender/blenpluginapi/plugin.DEF')
515 plugtargetlist.append(env['BF_INSTALLDIR'] + os.sep + 'plugins' + os.sep + 'include' + os.sep + 'plugin.def')
518 for targetdir,srcfile in zip(plugtargetlist, pluglist):
519 td, tf = os.path.split(targetdir)
520 plugininstall.append(env.Install(dir=td, source=srcfile))
524 for tp, tn, tf in os.walk('release/text'):
530 textlist.append(tp+os.sep+f)
532 textinstall = env.Install(dir=env['BF_INSTALLDIR'], source=textlist)
534 if env['OURPLATFORM']=='darwin':
535 allinstall = [blenderinstall, plugininstall, textinstall]
536 elif env['OURPLATFORM']=='linux2':
537 allinstall = [blenderinstall, dotblenderinstall, scriptinstall, plugininstall, textinstall, iconinstall]
539 allinstall = [blenderinstall, dotblenderinstall, scriptinstall, plugininstall, textinstall]
541 if env['OURPLATFORM'] in ('win32-vc', 'win32-mingw'):
542 dllsources = ['${LCGDIR}/gettext/lib/gnu_gettext.dll',
543 '${BF_PNG_LIBPATH}/libpng.dll',
544 '${BF_ZLIB_LIBPATH}/zlib.dll',
545 '${BF_TIFF_LIBPATH}/${BF_TIFF_LIB}.dll']
546 dllsources += ['${BF_PTHREADS_LIBPATH}/${BF_PTHREADS_LIB}.dll']
547 if env['WITH_BF_SDL']:
548 dllsources.append('${BF_SDL_LIBPATH}/SDL.dll')
549 if env['WITH_BF_PYTHON']:
550 dllsources.append('#release/windows/extra/python25.zip')
551 dllsources.append('#release/windows/extra/zlib.pyd')
553 dllsources.append('${BF_PYTHON_LIBPATH}/${BF_PYTHON_LIB}_d.dll')
555 dllsources.append('${BF_PYTHON_LIBPATH}/${BF_PYTHON_LIB}.dll')
556 if env['WITH_BF_ICONV']:
557 dllsources += ['${BF_ICONV_LIBPATH}/iconv.dll']
558 if env['WITH_BF_FFMPEG']:
559 dllsources += ['${LCGDIR}/ffmpeg/lib/avcodec-51.dll',
560 '${LCGDIR}/ffmpeg/lib/avformat-52.dll',
561 '${LCGDIR}/ffmpeg/lib/avdevice-52.dll',
562 '${LCGDIR}/ffmpeg/lib/avutil-49.dll',
563 '${LCGDIR}/ffmpeg/lib/libfaad-0.dll',
564 '${LCGDIR}/ffmpeg/lib/libfaac-0.dll',
565 '${LCGDIR}/ffmpeg/lib/libmp3lame-0.dll',
566 '${LCGDIR}/ffmpeg/lib/libx264-59.dll',
567 '${LCGDIR}/ffmpeg/lib/xvidcore.dll',
568 '${LCGDIR}/ffmpeg/lib/swscale-0.dll']
569 windlls = env.Install(dir=env['BF_INSTALLDIR'], source = dllsources)
570 allinstall += windlls
572 installtarget = env.Alias('install', allinstall)
573 bininstalltarget = env.Alias('install-bin', blenderinstall)
575 nsisaction = env.Action(btools.NSIS_Installer, btools.NSIS_print)
576 nsiscmd = env.Command('nsisinstaller', None, nsisaction)
577 nsisalias = env.Alias('nsis', nsiscmd)
579 if 'blender' in B.targets:
580 blenderexe= env.Alias('blender', B.program_list)
581 Depends(blenderexe,installtarget)
583 if env['WITH_BF_PLAYER']:
584 blenderplayer = env.Alias('blenderplayer', B.program_list)
585 Depends(blenderplayer,installtarget)
587 if not env['WITH_BF_GAMEENGINE']:
588 blendernogame = env.Alias('blendernogame', B.program_list)
589 Depends(blendernogame,installtarget)
591 if 'blenderlite' in B.targets:
592 blenderlite = env.Alias('blenderlite', B.program_list)
593 Depends(blenderlite,installtarget)
595 Depends(nsiscmd, allinstall)
597 Default(B.program_list)
599 if not env['WITHOUT_BF_INSTALL']:
600 Default(installtarget)
602 #------------ RELEASE
603 # TODO: zipup the installation
605 #------------ BLENDERPLAYER
606 # TODO: build stubs and link into blenderplayer
609 if env['WITH_BF_DOCS']:
610 SConscript('source/blender/python/api2_2x/doc/SConscript')
611 SConscript('source/gameengine/PyDoc/SConscript')