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
32 # TODO: fix /FORCE:MULTIPLE on windows to get proper debug builds.
33 # TODO: directory copy functions are far too complicated, see:
34 # http://wiki.blender.org/index.php/User:Ideasman42/SConsNotSimpleInstallingFiles
36 import platform as pltfrm
38 # Need a better way to do this. Automagical maybe is not the best thing, maybe it is.
39 if pltfrm.architecture()[0] == '64bit':
51 from tempfile import mkdtemp
54 toolpath=os.path.join(".", "build_files", "scons", "tools")
56 # needed for importing tools
57 sys.path.append(toolpath)
63 EnsureSConsVersion(1,0,0)
65 # Before we do anything, let's check if we have a sane os.environ
66 if not btools.check_environ():
69 BlenderEnvironment = Blender.BlenderEnvironment
72 VERSION = btools.VERSION # This is used in creating the local config directories
73 VERSION_RELEASE_CYCLE = btools.VERSION_RELEASE_CYCLE
76 platform = sys.platform
80 ##### BEGIN SETUP #####
82 B.possible_types = ['core', 'player', 'player2', 'intern', 'extern']
84 B.binarykind = ['blender' , 'blenderplayer']
85 ##################################
86 # target and argument validation #
87 ##################################
88 # XX cheating for BF_FANCY, we check for BF_FANCY before args are validated
89 use_color = ARGUMENTS.get('BF_FANCY', '1')
93 if not use_color=='1':
96 #on defaut white Os X terminal, some colors are totally unlegible
97 if platform=='darwin':
98 B.bc.OKGREEN = '\033[34m'
99 B.bc.WARNING = '\033[36m'
102 print B.bc.HEADER+'Command-line arguments'+B.bc.ENDC
103 B.arguments = btools.validate_arguments(ARGUMENTS, B.bc)
104 btools.print_arguments(B.arguments, B.bc)
107 print B.bc.HEADER+'Command-line targets'+B.bc.ENDC
108 B.targets = btools.validate_targets(COMMAND_LINE_TARGETS, B.bc)
109 btools.print_targets(B.targets, B.bc)
111 ##########################
112 # setting up environment #
113 ##########################
115 # handling cmd line arguments & config file
118 tempbitness = int(B.arguments.get('BF_BITNESS', bitness)) # default to bitness found as per starting python
119 if tempbitness in (32, 64): # only set if 32 or 64 has been given
120 bitness = int(tempbitness)
125 B.bitness = tempbitness
128 # first check cmdline for toolset and we create env to work on
129 quickie = B.arguments.get('BF_QUICK', None)
130 quickdebug = B.arguments.get('BF_QUICKDEBUG', None)
133 B.quickdebug=string.split(quickdebug, ',')
138 B.quickie=string.split(quickie,',')
142 toolset = B.arguments.get('BF_TOOLSET', None)
144 print "Using " + toolset
145 if toolset=='mstoolkit':
146 env = BlenderEnvironment(ENV = os.environ)
147 env.Tool('mstoolkit', [toolpath])
149 env = BlenderEnvironment(tools=[toolset], ENV = os.environ)
151 btools.SetupSpawn(env)
153 if bitness==64 and platform=='win32':
154 env = BlenderEnvironment(ENV = os.environ, MSVS_ARCH='amd64')
156 env = BlenderEnvironment(ENV = os.environ)
159 print "Could not create a build environment"
162 cc = B.arguments.get('CC', None)
163 cxx = B.arguments.get('CXX', None)
169 if sys.platform=='win32':
170 if env['CC'] in ['cl', 'cl.exe']:
171 platform = 'win64-vc' if bitness == 64 else 'win32-vc'
172 elif env['CC'] in ['gcc']:
173 platform = 'win32-mingw'
175 env.SConscriptChdir(0)
177 # Remove major kernel version from linux platform.
178 # After Linus switched kernel to new version model this major version
179 # shouldn't take much sense for building rules.
181 if re.match('linux[0-9]+', platform):
184 crossbuild = B.arguments.get('BF_CROSS', None)
185 if crossbuild and platform not in ('win32-vc', 'win64-vc'):
186 platform = 'linuxcross'
188 env['OURPLATFORM'] = platform
190 configfile = os.path.join("build_files", "scons", "config", platform + "-config.py")
192 if os.path.exists(configfile):
193 print B.bc.OKGREEN + "Using config file: " + B.bc.ENDC + configfile
195 print B.bc.FAIL + configfile + " doesn't exist" + B.bc.ENDC
197 if crossbuild and env['PLATFORM'] != 'win32':
198 print B.bc.HEADER+"Preparing for crossbuild"+B.bc.ENDC
199 env.Tool('crossmingw', [toolpath])
200 # todo: determine proper libs/includes etc.
201 # Needed for gui programs, console programs should do without it
203 # Now we don't need this option to have console window
204 # env.Append(LINKFLAGS=['-mwindows'])
206 userconfig = B.arguments.get('BF_CONFIG', 'user-config.py')
207 # first read platform config. B.arguments will override
208 optfiles = [configfile]
209 if os.path.exists(userconfig):
210 print B.bc.OKGREEN + "Using user-config file: " + B.bc.ENDC + userconfig
211 optfiles += [userconfig]
213 print B.bc.WARNING + userconfig + " not found, no user overrides" + B.bc.ENDC
215 opts = btools.read_opts(env, optfiles, B.arguments)
218 if sys.platform=='win32':
220 env.Append(CPPFLAGS=['-DWIN64']) # -DWIN32 needed too, as it's used all over to target Windows generally
222 if not env['BF_FANCY']:
226 # remove install dir so old and new files are not mixed.
227 # NOTE: only do the scripts directory for now, otherwise is too disruptive for developers
228 # TODO: perhaps we need an option (off by default) to not do this altogether...
229 if not env['WITHOUT_BF_INSTALL'] and not env['WITHOUT_BF_OVERWRITE_INSTALL']:
230 scriptsDir = os.path.join(env['BF_INSTALLDIR'], VERSION, 'scripts')
231 if os.path.isdir(scriptsDir):
232 print B.bc.OKGREEN + "Clearing installation directory%s: %s" % (B.bc.ENDC, os.path.abspath(scriptsDir))
233 shutil.rmtree(scriptsDir)
236 SetOption('num_jobs', int(env['BF_NUMJOBS']))
237 print B.bc.OKGREEN + "Build with parallel jobs%s: %s" % (B.bc.ENDC, GetOption('num_jobs'))
238 print B.bc.OKGREEN + "Build with debug symbols%s: %s" % (B.bc.ENDC, env['BF_DEBUG'])
240 if 'blenderlite' in B.targets:
242 target_env_defs['WITH_BF_GAMEENGINE'] = False
243 target_env_defs['WITH_BF_OPENAL'] = False
244 target_env_defs['WITH_BF_OPENEXR'] = False
245 target_env_defs['WITH_BF_OPENMP'] = False
246 target_env_defs['WITH_BF_ICONV'] = False
247 target_env_defs['WITH_BF_INTERNATIONAL'] = False
248 target_env_defs['WITH_BF_OPENJPEG'] = False
249 target_env_defs['WITH_BF_FFMPEG'] = False
250 target_env_defs['WITH_BF_QUICKTIME'] = False
251 target_env_defs['WITH_BF_REDCODE'] = False
252 target_env_defs['WITH_BF_DDS'] = False
253 target_env_defs['WITH_BF_CINEON'] = False
254 target_env_defs['WITH_BF_FRAMESERVER'] = False
255 target_env_defs['WITH_BF_HDR'] = False
256 target_env_defs['WITH_BF_ZLIB'] = False
257 target_env_defs['WITH_BF_SDL'] = False
258 target_env_defs['WITH_BF_JPEG'] = False
259 target_env_defs['WITH_BF_PNG'] = False
260 target_env_defs['WITH_BF_BULLET'] = False
261 target_env_defs['WITH_BF_BINRELOC'] = False
262 target_env_defs['BF_BUILDINFO'] = False
263 target_env_defs['WITH_BF_FLUID'] = False
264 target_env_defs['WITH_BF_OCEANSIM'] = False
265 target_env_defs['WITH_BF_SMOKE'] = False
266 target_env_defs['WITH_BF_DECIMATE'] = False
267 target_env_defs['WITH_BF_BOOLEAN'] = False
268 target_env_defs['WITH_BF_REMESH'] = False
269 target_env_defs['WITH_BF_PYTHON'] = False
270 target_env_defs['WITH_BF_3DMOUSE'] = False
271 target_env_defs['WITH_BF_LIBMV'] = False
273 # Merge blenderlite, let command line to override
274 for k,v in target_env_defs.iteritems():
275 if k not in B.arguments:
278 # Extended OSX_SDK and 3D_CONNEXION_CLIENT_LIBRARY and JAckOSX detection for OSX
279 if env['OURPLATFORM']=='darwin':
280 print B.bc.OKGREEN + "Detected Xcode version: -- " + B.bc.ENDC + env['XCODE_CUR_VER'] + " --"
281 print "Available " + env['MACOSX_SDK_CHECK']
282 if not 'Mac OS X 10.5' in env['MACOSX_SDK_CHECK']:
283 print B.bc.OKGREEN + "MacOSX10.5.sdk not available:" + B.bc.ENDC + " using MacOSX10.6.sdk"
285 print B.bc.OKGREEN + "Found recommended sdk :" + B.bc.ENDC + " using MacOSX10.5.sdk"
287 # for now, Mac builders must download and install the 3DxWare 10 Beta 4 driver framework from 3Dconnexion
288 # necessary header file lives here when installed:
289 # /Library/Frameworks/3DconnexionClient.framework/Versions/Current/Headers/ConnexionClientAPI.h
290 if env['WITH_BF_3DMOUSE'] == 1:
291 if not os.path.exists('/Library/Frameworks/3DconnexionClient.framework'):
292 print "3D_CONNEXION_CLIENT_LIBRARY not found, disabling WITH_BF_3DMOUSE" # avoid build errors !
293 env['WITH_BF_3DMOUSE'] = 0
295 env.Append(LINKFLAGS=['-Xlinker','-weak_framework','-Xlinker','3DconnexionClient'])
297 # for now, Mac builders must download and install the JackOSX framework
298 # necessary header file lives here when installed:
299 # /Library/Frameworks/Jackmp.framework/Versions/A/Headers/jack.h
300 if env['WITH_BF_JACK'] == 1:
301 if not os.path.exists('/Library/Frameworks/Jackmp.framework'):
302 print "JackOSX install not found, disabling WITH_BF_JACK" # avoid build errors !
303 env['WITH_BF_JACK'] = 0
305 env.Append(LINKFLAGS=['-Xlinker','-weak_framework','-Xlinker','Jackmp'])
307 if env['WITH_BF_OPENMP'] == 1:
308 if env['OURPLATFORM'] in ('win32-vc', 'win64-vc'):
309 env['CCFLAGS'].append('/openmp')
311 if env['CC'].endswith('icc'): # to be able to handle CC=/opt/bla/icc case
312 env.Append(LINKFLAGS=['-openmp', '-static-intel'])
313 env['CCFLAGS'].append('-openmp')
315 env.Append(CCFLAGS=['-fopenmp'])
317 if env['WITH_GHOST_COCOA'] == True:
318 env.Append(CPPFLAGS=['-DGHOST_COCOA'])
320 if env['USE_QTKIT'] == True:
321 env.Append(CPPFLAGS=['-DUSE_QTKIT'])
323 #check for additional debug libnames
325 if env.has_key('BF_DEBUG_LIBS'):
326 B.quickdebug += env['BF_DEBUG_LIBS']
328 printdebug = B.arguments.get('BF_LISTDEBUG', 0)
330 if len(B.quickdebug) > 0 and printdebug != 0:
331 print B.bc.OKGREEN + "Buildings these libs with debug symbols:" + B.bc.ENDC
332 for l in B.quickdebug:
335 # remove stdc++ from LLIBS if we are building a statc linked CXXFLAGS
336 if env['WITH_BF_STATICCXX']:
337 if 'stdc++' in env['LLIBS']:
338 env['LLIBS'].remove('stdc++')
340 print '\tcould not remove stdc++ library from LLIBS, WITH_BF_STATICCXX may not work for your platform'
342 # check target for blenderplayer. Set WITH_BF_PLAYER if found on cmdline
343 if 'blenderplayer' in B.targets:
344 env['WITH_BF_PLAYER'] = True
346 if 'blendernogame' in B.targets:
347 env['WITH_BF_GAMEENGINE'] = False
349 # build without elbeem (fluidsim)?
350 if env['WITH_BF_FLUID'] == 1:
351 env['CPPFLAGS'].append('-DWITH_MOD_FLUID')
353 # build with ocean sim?
354 if env['WITH_BF_OCEANSIM'] == 1:
355 env['WITH_BF_FFTW3'] = 1 # ocean needs fftw3 so enable it
356 env['CPPFLAGS'].append('-DWITH_MOD_OCEANSIM')
359 if btools.ENDIAN == "big":
360 env['CPPFLAGS'].append('-D__BIG_ENDIAN__')
362 env['CPPFLAGS'].append('-D__LITTLE_ENDIAN__')
364 # TODO, make optional
365 env['CPPFLAGS'].append('-DWITH_AUDASPACE')
367 # lastly we check for root_build_dir ( we should not do before, otherwise we might do wrong builddir
368 B.root_build_dir = env['BF_BUILDDIR']
369 B.doc_build_dir = os.path.join(env['BF_INSTALLDIR'], 'doc')
370 if not B.root_build_dir[-1]==os.sep:
371 B.root_build_dir += os.sep
372 if not B.doc_build_dir[-1]==os.sep:
373 B.doc_build_dir += os.sep
375 # We do a shortcut for clean when no quicklist is given: just delete
376 # builddir without reading in SConscripts
378 if 'clean' in B.targets:
381 if not quickie and do_clean:
382 if os.path.exists(B.doc_build_dir):
383 print B.bc.HEADER+'Cleaning doc dir...'+B.bc.ENDC
384 dirs = os.listdir(B.doc_build_dir)
386 if os.path.isdir(B.doc_build_dir + entry) == 1:
387 print "clean dir %s"%(B.doc_build_dir+entry)
388 shutil.rmtree(B.doc_build_dir+entry)
390 print "remove file %s"%(B.doc_build_dir+entry)
391 os.remove(B.root_build_dir+entry)
392 if os.path.exists(B.root_build_dir):
393 print B.bc.HEADER+'Cleaning build dir...'+B.bc.ENDC
394 dirs = os.listdir(B.root_build_dir)
396 if os.path.isdir(B.root_build_dir + entry) == 1:
397 print "clean dir %s"%(B.root_build_dir+entry)
398 shutil.rmtree(B.root_build_dir+entry)
400 print "remove file %s"%(B.root_build_dir+entry)
401 os.remove(B.root_build_dir+entry)
402 for confile in ['extern/ffmpeg/config.mak', 'extern/x264/config.mak',
403 'extern/xvidcore/build/generic/platform.inc', 'extern/ffmpeg/include']:
404 if os.path.exists(confile):
405 print "clean file %s"%confile
406 if os.path.isdir(confile):
407 for root, dirs, files in os.walk(confile):
409 os.remove(os.path.join(root, name))
412 print B.bc.OKGREEN+'...done'+B.bc.ENDC
414 print B.bc.HEADER+'Already Clean, nothing to do.'+B.bc.ENDC
418 # ensure python header is found since detection can fail, this could happen
419 # with _any_ library but since we used a fixed python version this tends to
420 # be most problematic.
421 if env['WITH_BF_PYTHON']:
422 py_h = os.path.join(Dir(env.subst('${BF_PYTHON_INC}')).abspath, "Python.h")
424 if not os.path.exists(py_h):
425 print("\nMissing: \"" + env.subst('${BF_PYTHON_INC}') + os.sep + "Python.h\",\n"
426 " Set 'BF_PYTHON_INC' to point "
427 "to a valid python include path.\n Containing "
428 "Python.h for python version \"" + env.subst('${BF_PYTHON_VERSION}') + "\"")
434 if not os.path.isdir ( B.root_build_dir):
435 os.makedirs ( B.root_build_dir )
436 os.makedirs ( B.root_build_dir + 'source' )
437 os.makedirs ( B.root_build_dir + 'intern' )
438 os.makedirs ( B.root_build_dir + 'extern' )
439 os.makedirs ( B.root_build_dir + 'lib' )
440 os.makedirs ( B.root_build_dir + 'bin' )
441 # # Docs not working with epy anymore
442 # if not os.path.isdir(B.doc_build_dir) and env['WITH_BF_DOCS']:
443 # os.makedirs ( B.doc_build_dir )
445 Help(opts.GenerateHelpText(env))
447 # default is new quieter output, but if you need to see the
448 # commands, do 'scons BF_QUIET=0'
449 bf_quietoutput = B.arguments.get('BF_QUIET', '1')
451 B.set_quiet_output(env)
456 print B.bc.HEADER+'Building in: ' + B.bc.ENDC + os.path.abspath(B.root_build_dir)
457 env.SConsignFile(B.root_build_dir+'scons-signatures')
460 ##### END SETUP ##########
464 BuildDir(B.root_build_dir+'/source', 'source', duplicate=0)
465 SConscript(B.root_build_dir+'/source/SConscript')
466 BuildDir(B.root_build_dir+'/intern', 'intern', duplicate=0)
467 SConscript(B.root_build_dir+'/intern/SConscript')
468 BuildDir(B.root_build_dir+'/extern', 'extern', duplicate=0)
469 SConscript(B.root_build_dir+'/extern/SConscript')
471 # now that we have read all SConscripts, we know what
472 # libraries will be built. Create list of
473 # libraries to give as objects to linking phase
475 for tp in B.possible_types:
476 if (not tp == 'player') and (not tp == 'player2'):
477 mainlist += B.create_blender_liblist(env, tp)
479 if B.arguments.get('BF_PRIORITYLIST', '0')=='1':
480 B.propose_priorities()
482 dobj = B.buildinfo(env, "dynamic") + B.resources
483 creob = B.creator(env)
484 thestatlibs, thelibincs = B.setup_staticlibs(env)
485 thesyslibs = B.setup_syslibs(env)
487 if 'blender' in B.targets or not env['WITH_BF_NOBLENDER']:
488 env.BlenderProg(B.root_build_dir, "blender", creob + mainlist + thestatlibs + dobj, thesyslibs, [B.root_build_dir+'/lib'] + thelibincs, 'blender')
489 if env['WITH_BF_PLAYER']:
490 playerlist = B.create_blender_liblist(env, 'player')
491 playerlist += B.create_blender_liblist(env, 'player2')
492 playerlist += B.create_blender_liblist(env, 'intern')
493 playerlist += B.create_blender_liblist(env, 'extern')
494 env.BlenderProg(B.root_build_dir, "blenderplayer", dobj + playerlist + thestatlibs, thesyslibs, [B.root_build_dir+'/lib'] + thelibincs, 'blenderplayer')
496 ##### Now define some targets
499 #------------ INSTALL
503 if env['OURPLATFORM']=='darwin':
504 for prg in B.program_list:
505 bundle = '%s.app' % prg[0]
506 bundledir = os.path.dirname(bundle)
507 for dp, dn, df in os.walk(bundle):
512 dir=env['BF_INSTALLDIR']+dp[len(bundledir):]
513 source=[dp+os.sep+f for f in df]
514 blenderinstall.append(env.Install(dir=dir,source=source))
516 blenderinstall = env.Install(dir=env['BF_INSTALLDIR'], source=B.program_list)
518 #-- local path = config files in install dir: installdir\VERSION
519 #- dont do config and scripts for darwin, it is already in the bundle
522 datafilestargetlist = []
526 if env['OURPLATFORM']!='darwin':
527 dotblenderinstall = []
528 for targetdir,srcfile in zip(dottargetlist, dotblendlist):
529 td, tf = os.path.split(targetdir)
530 dotblenderinstall.append(env.Install(dir=td, source=srcfile))
531 for targetdir,srcfile in zip(datafilestargetlist, datafileslist):
532 td, tf = os.path.split(targetdir)
533 dotblenderinstall.append(env.Install(dir=td, source=srcfile))
535 if env['WITH_BF_PYTHON']:
536 #-- local/VERSION/scripts
537 scriptpaths=['release/scripts']
538 for scriptpath in scriptpaths:
539 for dp, dn, df in os.walk(scriptpath):
544 if '__pycache__' in dn: # py3.2 cache dir
545 dn.remove('__pycache__')
547 # only for testing builds
548 if VERSION_RELEASE_CYCLE == "release" and "addons_contrib" in dn:
549 dn.remove('addons_contrib')
551 dir = os.path.join(env['BF_INSTALLDIR'], VERSION)
552 dir += os.sep + os.path.basename(scriptpath) + dp[len(scriptpath):]
554 source=[os.path.join(dp, f) for f in df if not f.endswith(".pyc")]
555 # To ensure empty dirs are created too
557 env.Execute(Mkdir(dir))
558 scriptinstall.append(env.Install(dir=dir,source=source))
559 if env['WITH_BF_CYCLES']:
561 dir=os.path.join(env['BF_INSTALLDIR'], VERSION, 'scripts', 'addons','cycles')
562 source=os.listdir('intern/cycles/blender/addon')
563 if '.svn' in source: source.remove('.svn')
564 if '_svn' in source: source.remove('_svn')
565 if '__pycache__' in source: source.remove('__pycache__')
566 source=['intern/cycles/blender/addon/'+s for s in source]
567 scriptinstall.append(env.Install(dir=dir,source=source))
570 dir=os.path.join(env['BF_INSTALLDIR'], VERSION, 'scripts', 'addons','cycles', 'kernel')
571 source=os.listdir('intern/cycles/kernel')
572 if '.svn' in source: source.remove('.svn')
573 if '_svn' in source: source.remove('_svn')
574 if '__pycache__' in source: source.remove('__pycache__')
575 source.remove('kernel.cpp')
576 source.remove('CMakeLists.txt')
579 source=['intern/cycles/kernel/'+s for s in source]
580 source.append('intern/cycles/util/util_color.h')
581 source.append('intern/cycles/util/util_math.h')
582 source.append('intern/cycles/util/util_transform.h')
583 source.append('intern/cycles/util/util_types.h')
584 scriptinstall.append(env.Install(dir=dir,source=source))
586 dir=os.path.join(env['BF_INSTALLDIR'], VERSION, 'scripts', 'addons','cycles', 'kernel', 'svm')
587 source=os.listdir('intern/cycles/kernel/svm')
588 if '.svn' in source: source.remove('.svn')
589 if '_svn' in source: source.remove('_svn')
590 if '__pycache__' in source: source.remove('__pycache__')
591 source=['intern/cycles/kernel/svm/'+s for s in source]
592 scriptinstall.append(env.Install(dir=dir,source=source))
595 dir=os.path.join(env['BF_INSTALLDIR'], VERSION, 'scripts', 'addons','cycles', 'license')
596 source=os.listdir('intern/cycles/doc/license')
597 if '.svn' in source: source.remove('.svn')
598 if '_svn' in source: source.remove('_svn')
599 if '__pycache__' in source: source.remove('__pycache__')
600 source.remove('CMakeLists.txt')
601 source=['intern/cycles/doc/license/'+s for s in source]
602 scriptinstall.append(env.Install(dir=dir,source=source))
605 if env['WITH_BF_CYCLES_CUDA_BINARIES']:
606 dir=os.path.join(env['BF_INSTALLDIR'], VERSION, 'scripts', 'addons','cycles', 'lib')
607 for arch in env['BF_CYCLES_CUDA_BINARIES_ARCH']:
608 kernel_build_dir = os.path.join(B.root_build_dir, 'intern/cycles/kernel')
609 cubin_file = os.path.join(kernel_build_dir, "kernel_%s.cubin" % arch)
610 scriptinstall.append(env.Install(dir=dir,source=cubin_file))
612 if env['WITH_BF_INTERNATIONAL']:
613 internationalpaths=['release' + os.sep + 'datafiles']
615 def check_path(path, member):
616 return (member in path.split(os.sep))
618 for intpath in internationalpaths:
619 for dp, dn, df in os.walk(intpath):
625 # we only care about release/datafiles/fonts, release/datafiles/locales
626 if check_path(dp, "fonts") or check_path(dp, "locale"):
631 dir = os.path.join(env['BF_INSTALLDIR'], VERSION)
632 dir += os.sep + os.path.basename(intpath) + dp[len(intpath):]
634 source=[os.path.join(dp, f) for f in df if not f.endswith(".pyc")]
635 # To ensure empty dirs are created too
637 env.Execute(Mkdir(dir))
638 scriptinstall.append(env.Install(dir=dir,source=source))
641 if env['OURPLATFORM']=='linux':
645 for tp, tn, tf in os.walk('release/freedesktop/icons'):
651 iconlist.append(os.path.join(tp, f))
652 icontargetlist.append( os.path.join(*([env['BF_INSTALLDIR']] + tp.split(os.sep)[2:] + [f])) )
655 for targetdir,srcfile in zip(icontargetlist, iconlist):
656 td, tf = os.path.split(targetdir)
657 iconinstall.append(env.Install(dir=td, source=srcfile))
659 # dlls for linuxcross
660 # TODO - add more libs, for now this lets blenderlite run
661 if env['OURPLATFORM']=='linuxcross':
662 dir=env['BF_INSTALLDIR']
665 if env['WITH_BF_OPENMP']:
666 source += ['../lib/windows/pthreads/lib/pthreadGC2.dll']
668 scriptinstall.append(env.Install(dir=dir, source=source))
673 for tp, tn, tf in os.walk('release/plugins'):
678 df = tp[8:] # remove 'release/'
680 pluglist.append(os.path.join(tp, f))
681 plugtargetlist.append( os.path.join(env['BF_INSTALLDIR'], VERSION, df, f) )
684 # header files for plugins
685 pluglist.append('source/blender/blenpluginapi/documentation.h')
686 plugtargetlist.append(os.path.join(env['BF_INSTALLDIR'], VERSION, 'plugins', 'include', 'documentation.h'))
687 pluglist.append('source/blender/blenpluginapi/externdef.h')
688 plugtargetlist.append(os.path.join(env['BF_INSTALLDIR'], VERSION, 'plugins', 'include', 'externdef.h'))
689 pluglist.append('source/blender/blenpluginapi/floatpatch.h')
690 plugtargetlist.append(os.path.join(env['BF_INSTALLDIR'], VERSION, 'plugins', 'include', 'floatpatch.h'))
691 pluglist.append('source/blender/blenpluginapi/iff.h')
692 plugtargetlist.append(os.path.join(env['BF_INSTALLDIR'], VERSION, 'plugins', 'include', 'iff.h'))
693 pluglist.append('source/blender/blenpluginapi/plugin.h')
694 plugtargetlist.append(os.path.join(env['BF_INSTALLDIR'], VERSION, 'plugins', 'include', 'plugin.h'))
695 pluglist.append('source/blender/blenpluginapi/util.h')
696 plugtargetlist.append(os.path.join(env['BF_INSTALLDIR'], VERSION, 'plugins', 'include', 'util.h'))
697 pluglist.append('source/blender/blenpluginapi/plugin.DEF')
698 plugtargetlist.append(os.path.join(env['BF_INSTALLDIR'], VERSION, 'plugins', 'include', 'plugin.def'))
701 # plugins in blender 2.5 don't work at the moment.
702 #for targetdir,srcfile in zip(plugtargetlist, pluglist):
703 # td, tf = os.path.split(targetdir)
704 # plugininstall.append(env.Install(dir=td, source=srcfile))
708 for tp, tn, tf in os.walk('release/text'):
714 textlist.append(tp+os.sep+f)
716 textinstall = env.Install(dir=env['BF_INSTALLDIR'], source=textlist)
718 if env['OURPLATFORM']=='darwin':
719 allinstall = [blenderinstall, plugininstall, textinstall]
720 elif env['OURPLATFORM']=='linux':
721 allinstall = [blenderinstall, dotblenderinstall, scriptinstall, plugininstall, textinstall, iconinstall]
723 allinstall = [blenderinstall, dotblenderinstall, scriptinstall, plugininstall, textinstall]
725 if env['OURPLATFORM'] in ('win32-vc', 'win32-mingw', 'win64-vc', 'linuxcross'):
728 if not env['OURPLATFORM'] in ('win32-mingw', 'linuxcross'):
729 # For MinGW and linuxcross static linking will be used
730 dllsources += ['${LCGDIR}/gettext/lib/gnu_gettext.dll']
732 dllsources += ['${BF_ZLIB_LIBPATH}/zlib.dll']
733 # Used when linking to libtiff was dynamic
734 # keep it here until compilation on all platform would be ok
735 # dllsources += ['${BF_TIFF_LIBPATH}/${BF_TIFF_LIB}.dll']
737 if env['OURPLATFORM'] != 'linuxcross':
738 # pthreads library is already added
739 dllsources += ['${BF_PTHREADS_LIBPATH}/${BF_PTHREADS_LIB}.dll']
741 if env['WITH_BF_SDL']:
742 if env['OURPLATFORM'] == 'win64-vc':
743 pass # we link statically already to SDL on win64
745 dllsources.append('${BF_SDL_LIBPATH}/SDL.dll')
747 if env['WITH_BF_PYTHON']:
749 dllsources.append('${BF_PYTHON_LIBPATH}/${BF_PYTHON_DLL}_d.dll')
751 dllsources.append('${BF_PYTHON_LIBPATH}/${BF_PYTHON_DLL}.dll')
753 if env['WITH_BF_ICONV']:
754 if env['OURPLATFORM'] == 'win64-vc':
755 pass # we link statically to iconv on win64
756 elif not env['OURPLATFORM'] in ('win32-mingw', 'linuxcross'):
757 #gettext for MinGW and cross-compilation is compiled staticly
758 dllsources += ['${BF_ICONV_LIBPATH}/iconv.dll']
760 if env['WITH_BF_OPENAL']:
761 dllsources.append('${LCGDIR}/openal/lib/OpenAL32.dll')
762 dllsources.append('${LCGDIR}/openal/lib/wrap_oal.dll')
764 if env['WITH_BF_SNDFILE']:
765 dllsources.append('${LCGDIR}/sndfile/lib/libsndfile-1.dll')
767 if env['WITH_BF_FFMPEG']:
768 dllsources += env['BF_FFMPEG_DLL'].split()
770 # Since the thumb handler is loaded by Explorer, architecture is
771 # strict: the x86 build fails on x64 Windows. We need to ship
772 # both builds in x86 packages.
774 dllsources.append('${LCGDIR}/thumbhandler/lib/BlendThumb.dll')
775 dllsources.append('${LCGDIR}/thumbhandler/lib/BlendThumb64.dll')
777 if env['WITH_BF_OIIO']:
778 dllsources.append('${LCGDIR}/openimageio/bin/OpenImageIO.dll')
780 dllsources.append('#source/icons/blender.exe.manifest')
782 windlls = env.Install(dir=env['BF_INSTALLDIR'], source = dllsources)
783 allinstall += windlls
785 installtarget = env.Alias('install', allinstall)
786 bininstalltarget = env.Alias('install-bin', blenderinstall)
788 nsisaction = env.Action(btools.NSIS_Installer, btools.NSIS_print)
789 nsiscmd = env.Command('nsisinstaller', None, nsisaction)
790 nsisalias = env.Alias('nsis', nsiscmd)
792 if 'blender' in B.targets:
793 blenderexe= env.Alias('blender', B.program_list)
794 Depends(blenderexe,installtarget)
796 if env['WITH_BF_PLAYER']:
797 blenderplayer = env.Alias('blenderplayer', B.program_list)
798 Depends(blenderplayer,installtarget)
800 if not env['WITH_BF_GAMEENGINE']:
801 blendernogame = env.Alias('blendernogame', B.program_list)
802 Depends(blendernogame,installtarget)
804 if 'blenderlite' in B.targets:
805 blenderlite = env.Alias('blenderlite', B.program_list)
806 Depends(blenderlite,installtarget)
808 Depends(nsiscmd, allinstall)
810 buildslave_action = env.Action(btools.buildslave, btools.buildslave_print)
811 buildslave_cmd = env.Command('buildslave_exec', None, buildslave_action)
812 buildslave_alias = env.Alias('buildslave', buildslave_cmd)
814 Depends(buildslave_cmd, allinstall)
816 Default(B.program_list)
818 if not env['WITHOUT_BF_INSTALL']:
819 Default(installtarget)