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 crossbuild = B.arguments.get('BF_CROSS', None)
170 if crossbuild and platform not in ('win32-vc', 'win64-vc'):
171 platform = 'linuxcross'
173 env['OURPLATFORM'] = platform
175 configfile = os.path.join("build_files", "scons", "config", platform + "-config.py")
177 if os.path.exists(configfile):
178 print B.bc.OKGREEN + "Using config file: " + B.bc.ENDC + configfile
180 print B.bc.FAIL + configfile + " doesn't exist" + B.bc.ENDC
182 if crossbuild and env['PLATFORM'] != 'win32':
183 print B.bc.HEADER+"Preparing for crossbuild"+B.bc.ENDC
184 env.Tool('crossmingw', [toolpath])
185 # todo: determine proper libs/includes etc.
186 # Needed for gui programs, console programs should do without it
188 # Now we don't need this option to have console window
189 # env.Append(LINKFLAGS=['-mwindows'])
191 userconfig = B.arguments.get('BF_CONFIG', 'user-config.py')
192 # first read platform config. B.arguments will override
193 optfiles = [configfile]
194 if os.path.exists(userconfig):
195 print B.bc.OKGREEN + "Using user-config file: " + B.bc.ENDC + userconfig
196 optfiles += [userconfig]
198 print B.bc.WARNING + userconfig + " not found, no user overrides" + B.bc.ENDC
200 opts = btools.read_opts(env, optfiles, B.arguments)
203 if sys.platform=='win32':
205 env.Append(CFLAGS=['-DWIN64']) # -DWIN32 needed too, as it's used all over to target Windows generally
207 if not env['BF_FANCY']:
211 # remove install dir so old and new files are not mixed.
212 # NOTE: only do the scripts directory for now, otherwise is too disruptive for developers
213 # TODO: perhaps we need an option (off by default) to not do this altogether...
214 if not env['WITHOUT_BF_INSTALL'] and not env['WITHOUT_BF_OVERWRITE_INSTALL']:
215 scriptsDir = os.path.join(env['BF_INSTALLDIR'], VERSION, 'scripts')
216 if os.path.isdir(scriptsDir):
217 print B.bc.OKGREEN + "Clearing installation directory%s: %s" % (B.bc.ENDC, os.path.abspath(scriptsDir))
218 shutil.rmtree(scriptsDir)
221 SetOption('num_jobs', int(env['BF_NUMJOBS']))
222 print B.bc.OKGREEN + "Build with parallel jobs%s: %s" % (B.bc.ENDC, GetOption('num_jobs'))
223 print B.bc.OKGREEN + "Build with debug symbols%s: %s" % (B.bc.ENDC, env['BF_DEBUG'])
225 if 'blenderlite' in B.targets:
227 target_env_defs['WITH_BF_GAMEENGINE'] = False
228 target_env_defs['WITH_BF_OPENAL'] = False
229 target_env_defs['WITH_BF_OPENEXR'] = False
230 target_env_defs['WITH_BF_OPENMP'] = False
231 target_env_defs['WITH_BF_ICONV'] = False
232 target_env_defs['WITH_BF_INTERNATIONAL'] = False
233 target_env_defs['WITH_BF_OPENJPEG'] = False
234 target_env_defs['WITH_BF_FFMPEG'] = False
235 target_env_defs['WITH_BF_QUICKTIME'] = False
236 target_env_defs['WITH_BF_REDCODE'] = False
237 target_env_defs['WITH_BF_DDS'] = False
238 target_env_defs['WITH_BF_CINEON'] = False
239 target_env_defs['WITH_BF_HDR'] = False
240 target_env_defs['WITH_BF_ZLIB'] = False
241 target_env_defs['WITH_BF_SDL'] = False
242 target_env_defs['WITH_BF_JPEG'] = False
243 target_env_defs['WITH_BF_PNG'] = False
244 target_env_defs['WITH_BF_BULLET'] = False
245 target_env_defs['WITH_BF_BINRELOC'] = False
246 target_env_defs['BF_BUILDINFO'] = False
247 target_env_defs['BF_NO_ELBEEM'] = True
248 target_env_defs['WITH_BF_PYTHON'] = False
249 target_env_defs['WITH_BF_3DMOUSE'] = False
251 # Merge blenderlite, let command line to override
252 for k,v in target_env_defs.iteritems():
253 if k not in B.arguments:
256 # Extended OSX_SDK and 3D_CONNEXION_CLIENT_LIBRARY detection for OSX
257 if env['OURPLATFORM']=='darwin':
258 print B.bc.OKGREEN + "Detected Xcode version: -- " + B.bc.ENDC + env['XCODE_CUR_VER'][:9] + " --"
259 print "Available " + env['MACOSX_SDK_CHECK']
260 if not 'Mac OS X 10.5' in env['MACOSX_SDK_CHECK']:
261 print B.bc.OKGREEN + "MacOSX10.5.sdk not available:" + B.bc.ENDC + " using MacOSX10.6.sdk"
263 print B.bc.OKGREEN + "Found recommended sdk :" + B.bc.ENDC + " using MacOSX10.5.sdk"
265 # for now, Mac builders must download and install the driver framework from 3Dconnexion
266 # necessary header file lives here when installed:
267 # /Library/Frameworks/3DconnexionClient.framework/Versions/Current/Headers/ConnexionClientAPI.h
268 if env['WITH_BF_3DMOUSE'] == 1 and not os.path.exists('/Library/Frameworks/3DconnexionClient.framework'):
269 print "3D_CONNEXION_CLIENT_LIBRARY not found, disabling WITH_BF_3DMOUSE" # avoid build errors !
270 env['WITH_BF_3DMOUSE'] = 0
272 env.Append(LINKFLAGS=['-weak_framework','3DconnexionClient'])
275 if env['WITH_BF_OPENMP'] == 1:
276 if env['OURPLATFORM'] in ('win32-vc', 'win64-vc'):
277 env['CCFLAGS'].append('/openmp')
278 env['CPPFLAGS'].append('/openmp')
279 env['CXXFLAGS'].append('/openmp')
281 if env['CC'].endswith('icc'): # to be able to handle CC=/opt/bla/icc case
282 env.Append(LINKFLAGS=['-openmp', '-static-intel'])
283 env['CCFLAGS'].append('-openmp')
284 env['CPPFLAGS'].append('-openmp')
285 env['CXXFLAGS'].append('-openmp')
287 env.Append(CCFLAGS=['-fopenmp'])
288 env.Append(CPPFLAGS=['-fopenmp'])
289 env.Append(CXXFLAGS=['-fopenmp'])
291 if env['WITH_GHOST_COCOA'] == True:
292 env.Append(CFLAGS=['-DGHOST_COCOA'])
293 env.Append(CXXFLAGS=['-DGHOST_COCOA'])
294 env.Append(CPPFLAGS=['-DGHOST_COCOA'])
296 if env['USE_QTKIT'] == True:
297 env.Append(CFLAGS=['-DUSE_QTKIT'])
298 env.Append(CXXFLAGS=['-DUSE_QTKIT'])
299 env.Append(CPPFLAGS=['-DUSE_QTKIT'])
301 #check for additional debug libnames
303 if env.has_key('BF_DEBUG_LIBS'):
304 B.quickdebug += env['BF_DEBUG_LIBS']
306 printdebug = B.arguments.get('BF_LISTDEBUG', 0)
308 if len(B.quickdebug) > 0 and printdebug != 0:
309 print B.bc.OKGREEN + "Buildings these libs with debug symbols:" + B.bc.ENDC
310 for l in B.quickdebug:
313 # remove stdc++ from LLIBS if we are building a statc linked CXXFLAGS
314 if env['WITH_BF_STATICCXX']:
315 if 'stdc++' in env['LLIBS']:
316 env['LLIBS'].remove('stdc++')
318 print '\tcould not remove stdc++ library from LLIBS, WITH_BF_STATICCXX may not work for your platform'
320 # check target for blenderplayer. Set WITH_BF_PLAYER if found on cmdline
321 if 'blenderplayer' in B.targets:
322 env['WITH_BF_PLAYER'] = True
324 if 'blendernogame' in B.targets:
325 env['WITH_BF_GAMEENGINE'] = False
327 # disable elbeem (fluidsim) compilation?
328 if env['BF_NO_ELBEEM'] == 1:
329 env['CPPFLAGS'].append('-DDISABLE_ELBEEM')
330 env['CXXFLAGS'].append('-DDISABLE_ELBEEM')
331 env['CCFLAGS'].append('-DDISABLE_ELBEEM')
333 # TODO, make optional
334 env['CPPFLAGS'].append('-DWITH_AUDASPACE')
335 env['CXXFLAGS'].append('-DWITH_AUDASPACE')
336 env['CCFLAGS'].append('-DWITH_AUDASPACE')
338 # lastly we check for root_build_dir ( we should not do before, otherwise we might do wrong builddir
339 B.root_build_dir = env['BF_BUILDDIR']
340 B.doc_build_dir = os.path.join(env['BF_INSTALLDIR'], 'doc')
341 if not B.root_build_dir[-1]==os.sep:
342 B.root_build_dir += os.sep
343 if not B.doc_build_dir[-1]==os.sep:
344 B.doc_build_dir += os.sep
346 # We do a shortcut for clean when no quicklist is given: just delete
347 # builddir without reading in SConscripts
349 if 'clean' in B.targets:
352 if not quickie and do_clean:
353 if os.path.exists(B.doc_build_dir):
354 print B.bc.HEADER+'Cleaning doc dir...'+B.bc.ENDC
355 dirs = os.listdir(B.doc_build_dir)
357 if os.path.isdir(B.doc_build_dir + entry) == 1:
358 print "clean dir %s"%(B.doc_build_dir+entry)
359 shutil.rmtree(B.doc_build_dir+entry)
361 print "remove file %s"%(B.doc_build_dir+entry)
362 os.remove(B.root_build_dir+entry)
363 if os.path.exists(B.root_build_dir):
364 print B.bc.HEADER+'Cleaning build dir...'+B.bc.ENDC
365 dirs = os.listdir(B.root_build_dir)
367 if os.path.isdir(B.root_build_dir + entry) == 1:
368 print "clean dir %s"%(B.root_build_dir+entry)
369 shutil.rmtree(B.root_build_dir+entry)
371 print "remove file %s"%(B.root_build_dir+entry)
372 os.remove(B.root_build_dir+entry)
373 for confile in ['extern/ffmpeg/config.mak', 'extern/x264/config.mak',
374 'extern/xvidcore/build/generic/platform.inc', 'extern/ffmpeg/include']:
375 if os.path.exists(confile):
376 print "clean file %s"%confile
377 if os.path.isdir(confile):
378 for root, dirs, files in os.walk(confile):
380 os.remove(os.path.join(root, name))
383 print B.bc.OKGREEN+'...done'+B.bc.ENDC
385 print B.bc.HEADER+'Already Clean, nothing to do.'+B.bc.ENDC
389 # ensure python header is found since detection can fail, this could happen
390 # with _any_ library but since we used a fixed python version this tends to
391 # be most problematic.
392 if env['WITH_BF_PYTHON']:
393 py_h = os.path.join(Dir(env.subst('${BF_PYTHON_INC}')).abspath, "Python.h")
395 if not os.path.exists(py_h):
396 print("\nMissing: \"" + env.subst('${BF_PYTHON_INC}') + os.sep + "Python.h\",\n"
397 " Set 'BF_PYTHON_INC' to point "
398 "to a valid python include path.\n Containing "
399 "Python.h for python version \"" + env.subst('${BF_PYTHON_VERSION}') + "\"")
405 if not os.path.isdir ( B.root_build_dir):
406 os.makedirs ( B.root_build_dir )
407 os.makedirs ( B.root_build_dir + 'source' )
408 os.makedirs ( B.root_build_dir + 'intern' )
409 os.makedirs ( B.root_build_dir + 'extern' )
410 os.makedirs ( B.root_build_dir + 'lib' )
411 os.makedirs ( B.root_build_dir + 'bin' )
412 # # Docs not working with epy anymore
413 # if not os.path.isdir(B.doc_build_dir) and env['WITH_BF_DOCS']:
414 # os.makedirs ( B.doc_build_dir )
416 Help(opts.GenerateHelpText(env))
418 # default is new quieter output, but if you need to see the
419 # commands, do 'scons BF_QUIET=0'
420 bf_quietoutput = B.arguments.get('BF_QUIET', '1')
422 B.set_quiet_output(env)
427 print B.bc.HEADER+'Building in: ' + B.bc.ENDC + os.path.abspath(B.root_build_dir)
428 env.SConsignFile(B.root_build_dir+'scons-signatures')
431 ##### END SETUP ##########
435 BuildDir(B.root_build_dir+'/intern', 'intern', duplicate=0)
436 SConscript(B.root_build_dir+'/intern/SConscript')
437 BuildDir(B.root_build_dir+'/extern', 'extern', duplicate=0)
438 SConscript(B.root_build_dir+'/extern/SConscript')
439 BuildDir(B.root_build_dir+'/source', 'source', duplicate=0)
440 SConscript(B.root_build_dir+'/source/SConscript')
442 # now that we have read all SConscripts, we know what
443 # libraries will be built. Create list of
444 # libraries to give as objects to linking phase
446 for tp in B.possible_types:
447 if (not tp == 'player') and (not tp == 'player2'):
448 mainlist += B.create_blender_liblist(env, tp)
450 if B.arguments.get('BF_PRIORITYLIST', '0')=='1':
451 B.propose_priorities()
453 dobj = B.buildinfo(env, "dynamic") + B.resources
454 creob = B.creator(env)
455 thestatlibs, thelibincs = B.setup_staticlibs(env)
456 thesyslibs = B.setup_syslibs(env)
458 if 'blender' in B.targets or not env['WITH_BF_NOBLENDER']:
459 env.BlenderProg(B.root_build_dir, "blender", creob + mainlist + thestatlibs + dobj, thesyslibs, [B.root_build_dir+'/lib'] + thelibincs, 'blender')
460 if env['WITH_BF_PLAYER']:
461 playerlist = B.create_blender_liblist(env, 'player')
462 playerlist += B.create_blender_liblist(env, 'player2')
463 playerlist += B.create_blender_liblist(env, 'intern')
464 playerlist += B.create_blender_liblist(env, 'extern')
465 env.BlenderProg(B.root_build_dir, "blenderplayer", dobj + playerlist + thestatlibs, thesyslibs, [B.root_build_dir+'/lib'] + thelibincs, 'blenderplayer')
467 ##### Now define some targets
470 #------------ INSTALL
474 if env['OURPLATFORM']=='darwin':
475 for prg in B.program_list:
476 bundle = '%s.app' % prg[0]
477 bundledir = os.path.dirname(bundle)
478 for dp, dn, df in os.walk(bundle):
483 dir=env['BF_INSTALLDIR']+dp[len(bundledir):]
484 source=[dp+os.sep+f for f in df]
485 blenderinstall.append(env.Install(dir=dir,source=source))
487 blenderinstall = env.Install(dir=env['BF_INSTALLDIR'], source=B.program_list)
489 #-- local path = config files in install dir: installdir\VERSION
490 #- dont do config and scripts for darwin, it is already in the bundle
493 datafilestargetlist = []
497 if env['OURPLATFORM']!='darwin':
498 for dp, dn, df in os.walk('bin/.blender'):
505 if not env['WITH_BF_INTERNATIONAL']:
508 if f == '.Blanguages':
510 if not env['WITH_BF_FREETYPE']:
511 if f.endswith('.ttf'):
515 datafileslist.append(os.path.join(dp,f))
516 dir= os.path.join(*([env['BF_INSTALLDIR']] + [VERSION] + ['datafiles'] + dp.split(os.sep)[1:])) # skip bin
517 datafilestargetlist.append(dir + os.sep + f)
520 dotblendlist.append(os.path.join(dp, f))
521 dir= os.path.join(*([env['BF_INSTALLDIR']] + [VERSION] + ['config'] + dp.split(os.sep)[1:])) # skip bin
522 dottargetlist.append(dir + os.sep + f)
524 dotblenderinstall = []
525 for targetdir,srcfile in zip(dottargetlist, dotblendlist):
526 td, tf = os.path.split(targetdir)
527 dotblenderinstall.append(env.Install(dir=td, source=srcfile))
528 for targetdir,srcfile in zip(datafilestargetlist, datafileslist):
529 td, tf = os.path.split(targetdir)
530 dotblenderinstall.append(env.Install(dir=td, source=srcfile))
532 if env['WITH_BF_PYTHON']:
533 #-- local/VERSION/scripts
534 scriptpaths=['release/scripts']
535 for scriptpath in scriptpaths:
536 for dp, dn, df in os.walk(scriptpath):
541 if '__pycache__' in dn: # py3.2 cache dir
542 dn.remove('__pycache__')
544 dir = os.path.join(env['BF_INSTALLDIR'], VERSION)
545 dir += os.sep + os.path.basename(scriptpath) + dp[len(scriptpath):]
547 source=[os.path.join(dp, f) for f in df if not f.endswith(".pyc")]
548 # To ensure empty dirs are created too
550 env.Execute(Mkdir(dir))
551 scriptinstall.append(env.Install(dir=dir,source=source))
554 if env['OURPLATFORM']=='linux2':
558 for tp, tn, tf in os.walk('release/freedesktop/icons'):
564 iconlist.append(os.path.join(tp, f))
565 icontargetlist.append( os.path.join(*([env['BF_INSTALLDIR']] + tp.split(os.sep)[2:] + [f])) )
568 for targetdir,srcfile in zip(icontargetlist, iconlist):
569 td, tf = os.path.split(targetdir)
570 iconinstall.append(env.Install(dir=td, source=srcfile))
572 # dlls for linuxcross
573 # TODO - add more libs, for now this lets blenderlite run
574 if env['OURPLATFORM']=='linuxcross':
575 dir=env['BF_INSTALLDIR']
578 if env['WITH_BF_OPENMP']:
579 source += ['../lib/windows/pthreads/lib/pthreadGC2.dll']
581 scriptinstall.append(env.Install(dir=dir, source=source))
586 for tp, tn, tf in os.walk('release/plugins'):
591 df = tp[8:] # remove 'release/'
593 pluglist.append(os.path.join(tp, f))
594 plugtargetlist.append( os.path.join(env['BF_INSTALLDIR'], VERSION, df, f) )
597 # header files for plugins
598 pluglist.append('source/blender/blenpluginapi/documentation.h')
599 plugtargetlist.append(os.path.join(env['BF_INSTALLDIR'], VERSION, 'plugins', 'include', 'documentation.h'))
600 pluglist.append('source/blender/blenpluginapi/externdef.h')
601 plugtargetlist.append(os.path.join(env['BF_INSTALLDIR'], VERSION, 'plugins', 'include', 'externdef.h'))
602 pluglist.append('source/blender/blenpluginapi/floatpatch.h')
603 plugtargetlist.append(os.path.join(env['BF_INSTALLDIR'], VERSION, 'plugins', 'include', 'floatpatch.h'))
604 pluglist.append('source/blender/blenpluginapi/iff.h')
605 plugtargetlist.append(os.path.join(env['BF_INSTALLDIR'], VERSION, 'plugins', 'include', 'iff.h'))
606 pluglist.append('source/blender/blenpluginapi/plugin.h')
607 plugtargetlist.append(os.path.join(env['BF_INSTALLDIR'], VERSION, 'plugins', 'include', 'plugin.h'))
608 pluglist.append('source/blender/blenpluginapi/util.h')
609 plugtargetlist.append(os.path.join(env['BF_INSTALLDIR'], VERSION, 'plugins', 'include', 'util.h'))
610 pluglist.append('source/blender/blenpluginapi/plugin.DEF')
611 plugtargetlist.append(os.path.join(env['BF_INSTALLDIR'], VERSION, 'plugins', 'include', 'plugin.def'))
614 # plugins in blender 2.5 don't work at the moment.
615 #for targetdir,srcfile in zip(plugtargetlist, pluglist):
616 # td, tf = os.path.split(targetdir)
617 # plugininstall.append(env.Install(dir=td, source=srcfile))
621 for tp, tn, tf in os.walk('release/text'):
627 textlist.append(tp+os.sep+f)
629 textinstall = env.Install(dir=env['BF_INSTALLDIR'], source=textlist)
631 if env['OURPLATFORM']=='darwin':
632 allinstall = [blenderinstall, plugininstall, textinstall]
633 elif env['OURPLATFORM']=='linux2':
634 allinstall = [blenderinstall, dotblenderinstall, scriptinstall, plugininstall, textinstall, iconinstall]
636 allinstall = [blenderinstall, dotblenderinstall, scriptinstall, plugininstall, textinstall]
638 if env['OURPLATFORM'] in ('win32-vc', 'win32-mingw', 'win64-vc', 'linuxcross'):
641 if not env['OURPLATFORM'] in ('win32-mingw', 'win64-vc', 'linuxcross'):
642 # For MinGW and linuxcross static linking will be used
643 dllsources += ['${LCGDIR}/gettext/lib/gnu_gettext.dll']
645 #currently win64-vc doesn't appear to have libpng.dll
646 if env['OURPLATFORM'] != 'win64-vc':
647 dllsources += ['${BF_PNG_LIBPATH}/libpng.dll']
649 dllsources += ['${BF_ZLIB_LIBPATH}/zlib.dll']
650 # Used when linking to libtiff was dynamic
651 # keep it here until compilation on all platform would be ok
652 # dllsources += ['${BF_TIFF_LIBPATH}/${BF_TIFF_LIB}.dll']
654 if env['OURPLATFORM'] != 'linuxcross':
655 # pthreads library is already added
656 dllsources += ['${BF_PTHREADS_LIBPATH}/${BF_PTHREADS_LIB}.dll']
658 if env['WITH_BF_SDL']:
659 if env['OURPLATFORM'] == 'win64-vc':
660 pass # we link statically already to SDL on win64
662 dllsources.append('${BF_SDL_LIBPATH}/SDL.dll')
664 if env['WITH_BF_PYTHON']:
666 dllsources.append('${BF_PYTHON_LIBPATH}/${BF_PYTHON_DLL}_d.dll')
668 dllsources.append('${BF_PYTHON_LIBPATH}/${BF_PYTHON_DLL}.dll')
670 if env['WITH_BF_ICONV']:
671 if env['OURPLATFORM'] == 'win64-vc':
672 pass # we link statically to iconv on win64
673 elif not env['OURPLATFORM'] in ('win32-mingw', 'linuxcross'):
674 #gettext for MinGW and cross-compilation is compiled staticly
675 dllsources += ['${BF_ICONV_LIBPATH}/iconv.dll']
677 if env['WITH_BF_OPENAL']:
678 dllsources.append('${LCGDIR}/openal/lib/OpenAL32.dll')
679 dllsources.append('${LCGDIR}/openal/lib/wrap_oal.dll')
681 if env['WITH_BF_SNDFILE']:
682 dllsources.append('${LCGDIR}/sndfile/lib/libsndfile-1.dll')
684 if env['WITH_BF_FFMPEG']:
685 dllsources += env['BF_FFMPEG_DLL'].split()
687 # Since the thumb handler is loaded by Explorer, architecture is
688 # strict: the x86 build fails on x64 Windows. We need to ship
689 # both builds in x86 packages.
691 dllsources.append('${LCGDIR}/thumbhandler/lib/BlendThumb.dll')
692 dllsources.append('${LCGDIR}/thumbhandler/lib/BlendThumb64.dll')
694 dllsources.append('#source/icons/blender.exe.manifest')
696 windlls = env.Install(dir=env['BF_INSTALLDIR'], source = dllsources)
697 allinstall += windlls
699 installtarget = env.Alias('install', allinstall)
700 bininstalltarget = env.Alias('install-bin', blenderinstall)
702 nsisaction = env.Action(btools.NSIS_Installer, btools.NSIS_print)
703 nsiscmd = env.Command('nsisinstaller', None, nsisaction)
704 nsisalias = env.Alias('nsis', nsiscmd)
706 if 'blender' in B.targets:
707 blenderexe= env.Alias('blender', B.program_list)
708 Depends(blenderexe,installtarget)
710 if env['WITH_BF_PLAYER']:
711 blenderplayer = env.Alias('blenderplayer', B.program_list)
712 Depends(blenderplayer,installtarget)
714 if not env['WITH_BF_GAMEENGINE']:
715 blendernogame = env.Alias('blendernogame', B.program_list)
716 Depends(blendernogame,installtarget)
718 if 'blenderlite' in B.targets:
719 blenderlite = env.Alias('blenderlite', B.program_list)
720 Depends(blenderlite,installtarget)
722 Depends(nsiscmd, allinstall)
724 buildslave_action = env.Action(btools.buildslave, btools.buildslave_print)
725 buildslave_cmd = env.Command('buildslave_exec', None, buildslave_action)
726 buildslave_alias = env.Alias('buildslave', buildslave_cmd)
728 Depends(buildslave_cmd, allinstall)
730 Default(B.program_list)
732 if not env['WITHOUT_BF_INSTALL']:
733 Default(installtarget)