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.
34 import platform as pltfrm
36 # Need a better way to do this. Automagical maybe is not the best thing, maybe it is.
37 if pltfrm.architecture()[0] == '64bit':
49 from tempfile import mkdtemp
52 toolpath=os.path.join(".", "build_files", "scons", "tools")
54 # needed for importing tools
55 sys.path.append(toolpath)
61 EnsureSConsVersion(1,0,0)
63 # Before we do anything, let's check if we have a sane os.environ
64 if not btools.check_environ():
67 BlenderEnvironment = Blender.BlenderEnvironment
70 VERSION = btools.VERSION # This is used in creating the local config directories
73 platform = sys.platform
77 ##### BEGIN SETUP #####
79 B.possible_types = ['core', 'player', 'player2', 'intern', 'extern']
81 B.binarykind = ['blender' , 'blenderplayer']
82 ##################################
83 # target and argument validation #
84 ##################################
85 # XX cheating for BF_FANCY, we check for BF_FANCY before args are validated
86 use_color = ARGUMENTS.get('BF_FANCY', '1')
90 if not use_color=='1':
93 #on defaut white Os X terminal, some colors are totally unlegible
94 if platform=='darwin':
95 B.bc.OKGREEN = '\033[34m'
96 B.bc.WARNING = '\033[36m'
99 print B.bc.HEADER+'Command-line arguments'+B.bc.ENDC
100 B.arguments = btools.validate_arguments(ARGUMENTS, B.bc)
101 btools.print_arguments(B.arguments, B.bc)
104 print B.bc.HEADER+'Command-line targets'+B.bc.ENDC
105 B.targets = btools.validate_targets(COMMAND_LINE_TARGETS, B.bc)
106 btools.print_targets(B.targets, B.bc)
108 ##########################
109 # setting up environment #
110 ##########################
112 # handling cmd line arguments & config file
115 tempbitness = int(B.arguments.get('BF_BITNESS', bitness)) # default to bitness found as per starting python
116 if tempbitness in (32, 64): # only set if 32 or 64 has been given
117 bitness = int(tempbitness)
119 # first check cmdline for toolset and we create env to work on
120 quickie = B.arguments.get('BF_QUICK', None)
121 quickdebug = B.arguments.get('BF_QUICKDEBUG', None)
124 B.quickdebug=string.split(quickdebug, ',')
129 B.quickie=string.split(quickie,',')
133 toolset = B.arguments.get('BF_TOOLSET', None)
135 print "Using " + toolset
136 if toolset=='mstoolkit':
137 env = BlenderEnvironment(ENV = os.environ)
138 env.Tool('mstoolkit', [toolpath])
140 env = BlenderEnvironment(tools=[toolset], ENV = os.environ)
141 # xxx commented out, as was supressing warnings under mingw..
143 # btools.SetupSpawn(env)
145 if bitness==64 and platform=='win32':
146 env = BlenderEnvironment(ENV = os.environ, MSVS_ARCH='amd64')
148 env = BlenderEnvironment(ENV = os.environ)
151 print "Could not create a build environment"
154 cc = B.arguments.get('CC', None)
155 cxx = B.arguments.get('CXX', None)
161 if sys.platform=='win32':
162 if env['CC'] in ['cl', 'cl.exe']:
163 platform = 'win64-vc' if bitness == 64 else 'win32-vc'
164 elif env['CC'] in ['gcc']:
165 platform = 'win32-mingw'
167 env.SConscriptChdir(0)
169 # Remove major kernel version from linux platform.
170 # After Linus switched kernel to new version model this major version
171 # shouldn't take much sense for building rules.
173 if re.match('linux[0-9]+', platform):
176 crossbuild = B.arguments.get('BF_CROSS', None)
177 if crossbuild and platform not in ('win32-vc', 'win64-vc'):
178 platform = 'linuxcross'
180 env['OURPLATFORM'] = platform
182 configfile = os.path.join("build_files", "scons", "config", platform + "-config.py")
184 if os.path.exists(configfile):
185 print B.bc.OKGREEN + "Using config file: " + B.bc.ENDC + configfile
187 print B.bc.FAIL + configfile + " doesn't exist" + B.bc.ENDC
189 if crossbuild and env['PLATFORM'] != 'win32':
190 print B.bc.HEADER+"Preparing for crossbuild"+B.bc.ENDC
191 env.Tool('crossmingw', [toolpath])
192 # todo: determine proper libs/includes etc.
193 # Needed for gui programs, console programs should do without it
195 # Now we don't need this option to have console window
196 # env.Append(LINKFLAGS=['-mwindows'])
198 userconfig = B.arguments.get('BF_CONFIG', 'user-config.py')
199 # first read platform config. B.arguments will override
200 optfiles = [configfile]
201 if os.path.exists(userconfig):
202 print B.bc.OKGREEN + "Using user-config file: " + B.bc.ENDC + userconfig
203 optfiles += [userconfig]
205 print B.bc.WARNING + userconfig + " not found, no user overrides" + B.bc.ENDC
207 opts = btools.read_opts(env, optfiles, B.arguments)
210 if sys.platform=='win32':
212 env.Append(CFLAGS=['-DWIN64']) # -DWIN32 needed too, as it's used all over to target Windows generally
214 if not env['BF_FANCY']:
218 # remove install dir so old and new files are not mixed.
219 # NOTE: only do the scripts directory for now, otherwise is too disruptive for developers
220 # TODO: perhaps we need an option (off by default) to not do this altogether...
221 if not env['WITHOUT_BF_INSTALL'] and not env['WITHOUT_BF_OVERWRITE_INSTALL']:
222 scriptsDir = os.path.join(env['BF_INSTALLDIR'], VERSION, 'scripts')
223 if os.path.isdir(scriptsDir):
224 print B.bc.OKGREEN + "Clearing installation directory%s: %s" % (B.bc.ENDC, os.path.abspath(scriptsDir))
225 shutil.rmtree(scriptsDir)
228 SetOption('num_jobs', int(env['BF_NUMJOBS']))
229 print B.bc.OKGREEN + "Build with parallel jobs%s: %s" % (B.bc.ENDC, GetOption('num_jobs'))
230 print B.bc.OKGREEN + "Build with debug symbols%s: %s" % (B.bc.ENDC, env['BF_DEBUG'])
232 if 'blenderlite' in B.targets:
234 target_env_defs['WITH_BF_GAMEENGINE'] = False
235 target_env_defs['WITH_BF_OPENAL'] = False
236 target_env_defs['WITH_BF_OPENEXR'] = False
237 target_env_defs['WITH_BF_OPENMP'] = False
238 target_env_defs['WITH_BF_ICONV'] = False
239 target_env_defs['WITH_BF_INTERNATIONAL'] = False
240 target_env_defs['WITH_BF_OPENJPEG'] = False
241 target_env_defs['WITH_BF_FFMPEG'] = False
242 target_env_defs['WITH_BF_QUICKTIME'] = False
243 target_env_defs['WITH_BF_REDCODE'] = False
244 target_env_defs['WITH_BF_DDS'] = False
245 target_env_defs['WITH_BF_CINEON'] = False
246 target_env_defs['WITH_BF_HDR'] = False
247 target_env_defs['WITH_BF_ZLIB'] = False
248 target_env_defs['WITH_BF_SDL'] = False
249 target_env_defs['WITH_BF_JPEG'] = False
250 target_env_defs['WITH_BF_PNG'] = False
251 target_env_defs['WITH_BF_BULLET'] = False
252 target_env_defs['WITH_BF_BINRELOC'] = False
253 target_env_defs['BF_BUILDINFO'] = False
254 target_env_defs['BF_NO_ELBEEM'] = True
255 target_env_defs['WITH_BF_PYTHON'] = False
256 target_env_defs['WITH_BF_3DMOUSE'] = False
258 # Merge blenderlite, let command line to override
259 for k,v in target_env_defs.iteritems():
260 if k not in B.arguments:
263 # Extended OSX_SDK and 3D_CONNEXION_CLIENT_LIBRARY detection for OSX
264 if env['OURPLATFORM']=='darwin':
265 print B.bc.OKGREEN + "Detected Xcode version: -- " + B.bc.ENDC + env['XCODE_CUR_VER'][:9] + " --"
266 print "Available " + env['MACOSX_SDK_CHECK']
267 if not 'Mac OS X 10.5' in env['MACOSX_SDK_CHECK']:
268 print B.bc.OKGREEN + "MacOSX10.5.sdk not available:" + B.bc.ENDC + " using MacOSX10.6.sdk"
270 print B.bc.OKGREEN + "Found recommended sdk :" + B.bc.ENDC + " using MacOSX10.5.sdk"
272 # for now, Mac builders must download and install the 3DxWare 10 Beta 4 driver framework from 3Dconnexion
273 # necessary header file lives here when installed:
274 # /Library/Frameworks/3DconnexionClient.framework/Versions/Current/Headers/ConnexionClientAPI.h
275 if env['WITH_BF_3DMOUSE'] == 1:
276 if not os.path.exists('/Library/Frameworks/3DconnexionClient.framework'):
277 print "3D_CONNEXION_CLIENT_LIBRARY not found, disabling WITH_BF_3DMOUSE" # avoid build errors !
278 env['WITH_BF_3DMOUSE'] = 0
280 env.Append(LINKFLAGS=['-weak_framework','3DconnexionClient'])
282 if env['WITH_BF_OPENMP'] == 1:
283 if env['OURPLATFORM'] in ('win32-vc', 'win64-vc'):
284 env['CCFLAGS'].append('/openmp')
285 env['CPPFLAGS'].append('/openmp')
286 env['CXXFLAGS'].append('/openmp')
288 if env['CC'].endswith('icc'): # to be able to handle CC=/opt/bla/icc case
289 env.Append(LINKFLAGS=['-openmp', '-static-intel'])
290 env['CCFLAGS'].append('-openmp')
291 env['CPPFLAGS'].append('-openmp')
292 env['CXXFLAGS'].append('-openmp')
294 env.Append(CCFLAGS=['-fopenmp'])
295 env.Append(CPPFLAGS=['-fopenmp'])
296 env.Append(CXXFLAGS=['-fopenmp'])
298 if env['WITH_GHOST_COCOA'] == True:
299 env.Append(CFLAGS=['-DGHOST_COCOA'])
300 env.Append(CXXFLAGS=['-DGHOST_COCOA'])
301 env.Append(CPPFLAGS=['-DGHOST_COCOA'])
303 if env['USE_QTKIT'] == True:
304 env.Append(CFLAGS=['-DUSE_QTKIT'])
305 env.Append(CXXFLAGS=['-DUSE_QTKIT'])
306 env.Append(CPPFLAGS=['-DUSE_QTKIT'])
308 #check for additional debug libnames
310 if env.has_key('BF_DEBUG_LIBS'):
311 B.quickdebug += env['BF_DEBUG_LIBS']
313 printdebug = B.arguments.get('BF_LISTDEBUG', 0)
315 if len(B.quickdebug) > 0 and printdebug != 0:
316 print B.bc.OKGREEN + "Buildings these libs with debug symbols:" + B.bc.ENDC
317 for l in B.quickdebug:
320 # remove stdc++ from LLIBS if we are building a statc linked CXXFLAGS
321 if env['WITH_BF_STATICCXX']:
322 if 'stdc++' in env['LLIBS']:
323 env['LLIBS'].remove('stdc++')
325 print '\tcould not remove stdc++ library from LLIBS, WITH_BF_STATICCXX may not work for your platform'
327 # check target for blenderplayer. Set WITH_BF_PLAYER if found on cmdline
328 if 'blenderplayer' in B.targets:
329 env['WITH_BF_PLAYER'] = True
331 if 'blendernogame' in B.targets:
332 env['WITH_BF_GAMEENGINE'] = False
334 # disable elbeem (fluidsim) compilation?
335 if env['BF_NO_ELBEEM'] == 1:
336 env['CPPFLAGS'].append('-DDISABLE_ELBEEM')
337 env['CXXFLAGS'].append('-DDISABLE_ELBEEM')
338 env['CCFLAGS'].append('-DDISABLE_ELBEEM')
340 # TODO, make optional
341 env['CPPFLAGS'].append('-DWITH_AUDASPACE')
342 env['CXXFLAGS'].append('-DWITH_AUDASPACE')
343 env['CCFLAGS'].append('-DWITH_AUDASPACE')
345 # lastly we check for root_build_dir ( we should not do before, otherwise we might do wrong builddir
346 B.root_build_dir = env['BF_BUILDDIR']
347 B.doc_build_dir = os.path.join(env['BF_INSTALLDIR'], 'doc')
348 if not B.root_build_dir[-1]==os.sep:
349 B.root_build_dir += os.sep
350 if not B.doc_build_dir[-1]==os.sep:
351 B.doc_build_dir += os.sep
353 # We do a shortcut for clean when no quicklist is given: just delete
354 # builddir without reading in SConscripts
356 if 'clean' in B.targets:
359 if not quickie and do_clean:
360 if os.path.exists(B.doc_build_dir):
361 print B.bc.HEADER+'Cleaning doc dir...'+B.bc.ENDC
362 dirs = os.listdir(B.doc_build_dir)
364 if os.path.isdir(B.doc_build_dir + entry) == 1:
365 print "clean dir %s"%(B.doc_build_dir+entry)
366 shutil.rmtree(B.doc_build_dir+entry)
368 print "remove file %s"%(B.doc_build_dir+entry)
369 os.remove(B.root_build_dir+entry)
370 if os.path.exists(B.root_build_dir):
371 print B.bc.HEADER+'Cleaning build dir...'+B.bc.ENDC
372 dirs = os.listdir(B.root_build_dir)
374 if os.path.isdir(B.root_build_dir + entry) == 1:
375 print "clean dir %s"%(B.root_build_dir+entry)
376 shutil.rmtree(B.root_build_dir+entry)
378 print "remove file %s"%(B.root_build_dir+entry)
379 os.remove(B.root_build_dir+entry)
380 for confile in ['extern/ffmpeg/config.mak', 'extern/x264/config.mak',
381 'extern/xvidcore/build/generic/platform.inc', 'extern/ffmpeg/include']:
382 if os.path.exists(confile):
383 print "clean file %s"%confile
384 if os.path.isdir(confile):
385 for root, dirs, files in os.walk(confile):
387 os.remove(os.path.join(root, name))
390 print B.bc.OKGREEN+'...done'+B.bc.ENDC
392 print B.bc.HEADER+'Already Clean, nothing to do.'+B.bc.ENDC
396 # ensure python header is found since detection can fail, this could happen
397 # with _any_ library but since we used a fixed python version this tends to
398 # be most problematic.
399 if env['WITH_BF_PYTHON']:
400 py_h = os.path.join(Dir(env.subst('${BF_PYTHON_INC}')).abspath, "Python.h")
402 if not os.path.exists(py_h):
403 print("\nMissing: \"" + env.subst('${BF_PYTHON_INC}') + os.sep + "Python.h\",\n"
404 " Set 'BF_PYTHON_INC' to point "
405 "to a valid python include path.\n Containing "
406 "Python.h for python version \"" + env.subst('${BF_PYTHON_VERSION}') + "\"")
412 if not os.path.isdir ( B.root_build_dir):
413 os.makedirs ( B.root_build_dir )
414 os.makedirs ( B.root_build_dir + 'source' )
415 os.makedirs ( B.root_build_dir + 'intern' )
416 os.makedirs ( B.root_build_dir + 'extern' )
417 os.makedirs ( B.root_build_dir + 'lib' )
418 os.makedirs ( B.root_build_dir + 'bin' )
419 # # Docs not working with epy anymore
420 # if not os.path.isdir(B.doc_build_dir) and env['WITH_BF_DOCS']:
421 # os.makedirs ( B.doc_build_dir )
423 Help(opts.GenerateHelpText(env))
425 # default is new quieter output, but if you need to see the
426 # commands, do 'scons BF_QUIET=0'
427 bf_quietoutput = B.arguments.get('BF_QUIET', '1')
429 B.set_quiet_output(env)
434 print B.bc.HEADER+'Building in: ' + B.bc.ENDC + os.path.abspath(B.root_build_dir)
435 env.SConsignFile(B.root_build_dir+'scons-signatures')
438 ##### END SETUP ##########
442 BuildDir(B.root_build_dir+'/intern', 'intern', duplicate=0)
443 SConscript(B.root_build_dir+'/intern/SConscript')
444 BuildDir(B.root_build_dir+'/extern', 'extern', duplicate=0)
445 SConscript(B.root_build_dir+'/extern/SConscript')
446 BuildDir(B.root_build_dir+'/source', 'source', duplicate=0)
447 SConscript(B.root_build_dir+'/source/SConscript')
449 # now that we have read all SConscripts, we know what
450 # libraries will be built. Create list of
451 # libraries to give as objects to linking phase
453 for tp in B.possible_types:
454 if (not tp == 'player') and (not tp == 'player2'):
455 mainlist += B.create_blender_liblist(env, tp)
457 if B.arguments.get('BF_PRIORITYLIST', '0')=='1':
458 B.propose_priorities()
460 dobj = B.buildinfo(env, "dynamic") + B.resources
461 creob = B.creator(env)
462 thestatlibs, thelibincs = B.setup_staticlibs(env)
463 thesyslibs = B.setup_syslibs(env)
465 if 'blender' in B.targets or not env['WITH_BF_NOBLENDER']:
466 env.BlenderProg(B.root_build_dir, "blender", creob + mainlist + thestatlibs + dobj, thesyslibs, [B.root_build_dir+'/lib'] + thelibincs, 'blender')
467 if env['WITH_BF_PLAYER']:
468 playerlist = B.create_blender_liblist(env, 'player')
469 playerlist += B.create_blender_liblist(env, 'player2')
470 playerlist += B.create_blender_liblist(env, 'intern')
471 playerlist += B.create_blender_liblist(env, 'extern')
472 env.BlenderProg(B.root_build_dir, "blenderplayer", dobj + playerlist + thestatlibs, thesyslibs, [B.root_build_dir+'/lib'] + thelibincs, 'blenderplayer')
474 ##### Now define some targets
477 #------------ INSTALL
481 if env['OURPLATFORM']=='darwin':
482 for prg in B.program_list:
483 bundle = '%s.app' % prg[0]
484 bundledir = os.path.dirname(bundle)
485 for dp, dn, df in os.walk(bundle):
490 dir=env['BF_INSTALLDIR']+dp[len(bundledir):]
491 source=[dp+os.sep+f for f in df]
492 blenderinstall.append(env.Install(dir=dir,source=source))
494 blenderinstall = env.Install(dir=env['BF_INSTALLDIR'], source=B.program_list)
496 #-- local path = config files in install dir: installdir\VERSION
497 #- dont do config and scripts for darwin, it is already in the bundle
500 datafilestargetlist = []
504 if env['OURPLATFORM']!='darwin':
505 for dp, dn, df in os.walk('bin/.blender'):
512 if not env['WITH_BF_INTERNATIONAL']:
515 if f == '.Blanguages':
517 if not env['WITH_BF_FREETYPE']:
518 if f.endswith('.ttf'):
522 datafileslist.append(os.path.join(dp,f))
523 dir= os.path.join(*([env['BF_INSTALLDIR']] + [VERSION] + ['datafiles'] + dp.split(os.sep)[1:])) # skip bin
524 datafilestargetlist.append(dir + os.sep + f)
527 dotblendlist.append(os.path.join(dp, f))
528 dir= os.path.join(*([env['BF_INSTALLDIR']] + [VERSION] + ['config'] + dp.split(os.sep)[1:])) # skip bin
529 dottargetlist.append(dir + os.sep + f)
531 dotblenderinstall = []
532 for targetdir,srcfile in zip(dottargetlist, dotblendlist):
533 td, tf = os.path.split(targetdir)
534 dotblenderinstall.append(env.Install(dir=td, source=srcfile))
535 for targetdir,srcfile in zip(datafilestargetlist, datafileslist):
536 td, tf = os.path.split(targetdir)
537 dotblenderinstall.append(env.Install(dir=td, source=srcfile))
539 if env['WITH_BF_PYTHON']:
540 #-- local/VERSION/scripts
541 scriptpaths=['release/scripts']
542 for scriptpath in scriptpaths:
543 for dp, dn, df in os.walk(scriptpath):
548 if '__pycache__' in dn: # py3.2 cache dir
549 dn.remove('__pycache__')
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))
561 if env['OURPLATFORM']=='linux':
565 for tp, tn, tf in os.walk('release/freedesktop/icons'):
571 iconlist.append(os.path.join(tp, f))
572 icontargetlist.append( os.path.join(*([env['BF_INSTALLDIR']] + tp.split(os.sep)[2:] + [f])) )
575 for targetdir,srcfile in zip(icontargetlist, iconlist):
576 td, tf = os.path.split(targetdir)
577 iconinstall.append(env.Install(dir=td, source=srcfile))
579 # dlls for linuxcross
580 # TODO - add more libs, for now this lets blenderlite run
581 if env['OURPLATFORM']=='linuxcross':
582 dir=env['BF_INSTALLDIR']
585 if env['WITH_BF_OPENMP']:
586 source += ['../lib/windows/pthreads/lib/pthreadGC2.dll']
588 scriptinstall.append(env.Install(dir=dir, source=source))
593 for tp, tn, tf in os.walk('release/plugins'):
598 df = tp[8:] # remove 'release/'
600 pluglist.append(os.path.join(tp, f))
601 plugtargetlist.append( os.path.join(env['BF_INSTALLDIR'], VERSION, df, f) )
604 # header files for plugins
605 pluglist.append('source/blender/blenpluginapi/documentation.h')
606 plugtargetlist.append(os.path.join(env['BF_INSTALLDIR'], VERSION, 'plugins', 'include', 'documentation.h'))
607 pluglist.append('source/blender/blenpluginapi/externdef.h')
608 plugtargetlist.append(os.path.join(env['BF_INSTALLDIR'], VERSION, 'plugins', 'include', 'externdef.h'))
609 pluglist.append('source/blender/blenpluginapi/floatpatch.h')
610 plugtargetlist.append(os.path.join(env['BF_INSTALLDIR'], VERSION, 'plugins', 'include', 'floatpatch.h'))
611 pluglist.append('source/blender/blenpluginapi/iff.h')
612 plugtargetlist.append(os.path.join(env['BF_INSTALLDIR'], VERSION, 'plugins', 'include', 'iff.h'))
613 pluglist.append('source/blender/blenpluginapi/plugin.h')
614 plugtargetlist.append(os.path.join(env['BF_INSTALLDIR'], VERSION, 'plugins', 'include', 'plugin.h'))
615 pluglist.append('source/blender/blenpluginapi/util.h')
616 plugtargetlist.append(os.path.join(env['BF_INSTALLDIR'], VERSION, 'plugins', 'include', 'util.h'))
617 pluglist.append('source/blender/blenpluginapi/plugin.DEF')
618 plugtargetlist.append(os.path.join(env['BF_INSTALLDIR'], VERSION, 'plugins', 'include', 'plugin.def'))
621 # plugins in blender 2.5 don't work at the moment.
622 #for targetdir,srcfile in zip(plugtargetlist, pluglist):
623 # td, tf = os.path.split(targetdir)
624 # plugininstall.append(env.Install(dir=td, source=srcfile))
628 for tp, tn, tf in os.walk('release/text'):
634 textlist.append(tp+os.sep+f)
636 textinstall = env.Install(dir=env['BF_INSTALLDIR'], source=textlist)
638 if env['OURPLATFORM']=='darwin':
639 allinstall = [blenderinstall, plugininstall, textinstall]
640 elif env['OURPLATFORM']=='linux':
641 allinstall = [blenderinstall, dotblenderinstall, scriptinstall, plugininstall, textinstall, iconinstall]
643 allinstall = [blenderinstall, dotblenderinstall, scriptinstall, plugininstall, textinstall]
645 if env['OURPLATFORM'] in ('win32-vc', 'win32-mingw', 'win64-vc', 'linuxcross'):
648 if not env['OURPLATFORM'] in ('win32-mingw', 'linuxcross'):
649 # For MinGW and linuxcross static linking will be used
650 dllsources += ['${LCGDIR}/gettext/lib/gnu_gettext.dll']
652 #currently win64-vc doesn't appear to have libpng.dll
653 if env['OURPLATFORM'] != 'win64-vc':
654 dllsources += ['${BF_PNG_LIBPATH}/libpng.dll']
656 dllsources += ['${BF_ZLIB_LIBPATH}/zlib.dll']
657 # Used when linking to libtiff was dynamic
658 # keep it here until compilation on all platform would be ok
659 # dllsources += ['${BF_TIFF_LIBPATH}/${BF_TIFF_LIB}.dll']
661 if env['OURPLATFORM'] != 'linuxcross':
662 # pthreads library is already added
663 dllsources += ['${BF_PTHREADS_LIBPATH}/${BF_PTHREADS_LIB}.dll']
665 if env['WITH_BF_SDL']:
666 if env['OURPLATFORM'] == 'win64-vc':
667 pass # we link statically already to SDL on win64
669 dllsources.append('${BF_SDL_LIBPATH}/SDL.dll')
671 if env['WITH_BF_PYTHON']:
673 dllsources.append('${BF_PYTHON_LIBPATH}/${BF_PYTHON_DLL}_d.dll')
675 dllsources.append('${BF_PYTHON_LIBPATH}/${BF_PYTHON_DLL}.dll')
677 if env['WITH_BF_ICONV']:
678 if env['OURPLATFORM'] == 'win64-vc':
679 pass # we link statically to iconv on win64
680 elif not env['OURPLATFORM'] in ('win32-mingw', 'linuxcross'):
681 #gettext for MinGW and cross-compilation is compiled staticly
682 dllsources += ['${BF_ICONV_LIBPATH}/iconv.dll']
684 if env['WITH_BF_OPENAL']:
685 dllsources.append('${LCGDIR}/openal/lib/OpenAL32.dll')
686 dllsources.append('${LCGDIR}/openal/lib/wrap_oal.dll')
688 if env['WITH_BF_SNDFILE']:
689 dllsources.append('${LCGDIR}/sndfile/lib/libsndfile-1.dll')
691 if env['WITH_BF_FFMPEG']:
692 dllsources += env['BF_FFMPEG_DLL'].split()
694 # Since the thumb handler is loaded by Explorer, architecture is
695 # strict: the x86 build fails on x64 Windows. We need to ship
696 # both builds in x86 packages.
698 dllsources.append('${LCGDIR}/thumbhandler/lib/BlendThumb.dll')
699 dllsources.append('${LCGDIR}/thumbhandler/lib/BlendThumb64.dll')
701 dllsources.append('#source/icons/blender.exe.manifest')
703 windlls = env.Install(dir=env['BF_INSTALLDIR'], source = dllsources)
704 allinstall += windlls
706 installtarget = env.Alias('install', allinstall)
707 bininstalltarget = env.Alias('install-bin', blenderinstall)
709 nsisaction = env.Action(btools.NSIS_Installer, btools.NSIS_print)
710 nsiscmd = env.Command('nsisinstaller', None, nsisaction)
711 nsisalias = env.Alias('nsis', nsiscmd)
713 if 'blender' in B.targets:
714 blenderexe= env.Alias('blender', B.program_list)
715 Depends(blenderexe,installtarget)
717 if env['WITH_BF_PLAYER']:
718 blenderplayer = env.Alias('blenderplayer', B.program_list)
719 Depends(blenderplayer,installtarget)
721 if not env['WITH_BF_GAMEENGINE']:
722 blendernogame = env.Alias('blendernogame', B.program_list)
723 Depends(blendernogame,installtarget)
725 if 'blenderlite' in B.targets:
726 blenderlite = env.Alias('blenderlite', B.program_list)
727 Depends(blenderlite,installtarget)
729 Depends(nsiscmd, allinstall)
731 buildslave_action = env.Action(btools.buildslave, btools.buildslave_print)
732 buildslave_cmd = env.Command('buildslave_exec', None, buildslave_action)
733 buildslave_alias = env.Alias('buildslave', buildslave_cmd)
735 Depends(buildslave_cmd, allinstall)
737 Default(B.program_list)
739 if not env['WITHOUT_BF_INSTALL']:
740 Default(installtarget)