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
114 # first check cmdline for toolset and we create env to work on
115 quickie = B.arguments.get('BF_QUICK', None)
116 quickdebug = B.arguments.get('BF_QUICKDEBUG', None)
119 B.quickdebug=string.split(quickdebug, ',')
124 B.quickie=string.split(quickie,',')
128 toolset = B.arguments.get('BF_TOOLSET', None)
130 print "Using " + toolset
131 if toolset=='mstoolkit':
132 env = BlenderEnvironment(ENV = os.environ)
133 env.Tool('mstoolkit', [toolpath])
135 env = BlenderEnvironment(tools=[toolset], ENV = os.environ)
136 # xxx commented out, as was supressing warnings under mingw..
138 # btools.SetupSpawn(env)
140 if bitness==64 and platform=='win32':
141 env = BlenderEnvironment(ENV = os.environ, MSVS_ARCH='amd64')
143 env = BlenderEnvironment(ENV = os.environ)
146 print "Could not create a build environment"
149 cc = B.arguments.get('CC', None)
150 cxx = B.arguments.get('CXX', None)
156 if sys.platform=='win32':
157 if env['CC'] in ['cl', 'cl.exe']:
158 platform = 'win64-vc' if bitness == 64 else 'win32-vc'
159 elif env['CC'] in ['gcc']:
160 platform = 'win32-mingw'
162 env.SConscriptChdir(0)
164 crossbuild = B.arguments.get('BF_CROSS', None)
165 if crossbuild and platform not in ('win32-vc', 'win64-vc'):
166 platform = 'linuxcross'
168 env['OURPLATFORM'] = platform
170 configfile = os.path.join("build_files", "scons", "config", platform + "-config.py")
172 if os.path.exists(configfile):
173 print B.bc.OKGREEN + "Using config file: " + B.bc.ENDC + configfile
175 print B.bc.FAIL + configfile + " doesn't exist" + B.bc.ENDC
177 if crossbuild and env['PLATFORM'] != 'win32':
178 print B.bc.HEADER+"Preparing for crossbuild"+B.bc.ENDC
179 env.Tool('crossmingw', [toolpath])
180 # todo: determine proper libs/includes etc.
181 # Needed for gui programs, console programs should do without it
183 # Now we don't need this option to have console window
184 # env.Append(LINKFLAGS=['-mwindows'])
186 userconfig = B.arguments.get('BF_CONFIG', 'user-config.py')
187 # first read platform config. B.arguments will override
188 optfiles = [configfile]
189 if os.path.exists(userconfig):
190 print B.bc.OKGREEN + "Using user-config file: " + B.bc.ENDC + userconfig
191 optfiles += [userconfig]
193 print B.bc.WARNING + userconfig + " not found, no user overrides" + B.bc.ENDC
195 opts = btools.read_opts(env, optfiles, B.arguments)
198 if sys.platform=='win32':
200 env.Append(CFLAGS=['-DWIN64']) # -DWIN32 needed too, as it's used all over to target Windows generally
202 if not env['BF_FANCY']:
206 # remove install dir so old and new files are not mixed.
207 # NOTE: only do the scripts directory for now, otherwise is too disruptive for developers
208 # TODO: perhaps we need an option (off by default) to not do this altogether...
209 if not env['WITHOUT_BF_INSTALL'] and not env['WITHOUT_BF_OVERWRITE_INSTALL']:
210 scriptsDir = os.path.join(env['BF_INSTALLDIR'], VERSION, 'scripts')
211 if os.path.isdir(scriptsDir):
212 print B.bc.OKGREEN + "Clearing installation directory%s: %s" % (B.bc.ENDC, os.path.abspath(scriptsDir))
213 shutil.rmtree(scriptsDir)
216 SetOption('num_jobs', int(env['BF_NUMJOBS']))
217 print B.bc.OKGREEN + "Build with parallel jobs%s: %s" % (B.bc.ENDC, GetOption('num_jobs'))
218 print B.bc.OKGREEN + "Build with debug symbols%s: %s" % (B.bc.ENDC, env['BF_DEBUG'])
220 if 'blenderlite' in B.targets:
222 target_env_defs['WITH_BF_GAMEENGINE'] = False
223 target_env_defs['WITH_BF_OPENAL'] = False
224 target_env_defs['WITH_BF_OPENEXR'] = False
225 target_env_defs['WITH_BF_OPENMP'] = False
226 target_env_defs['WITH_BF_ICONV'] = False
227 target_env_defs['WITH_BF_INTERNATIONAL'] = False
228 target_env_defs['WITH_BF_OPENJPEG'] = False
229 target_env_defs['WITH_BF_FFMPEG'] = False
230 target_env_defs['WITH_BF_QUICKTIME'] = False
231 target_env_defs['WITH_BF_REDCODE'] = False
232 target_env_defs['WITH_BF_DDS'] = False
233 target_env_defs['WITH_BF_CINEON'] = False
234 target_env_defs['WITH_BF_HDR'] = False
235 target_env_defs['WITH_BF_ZLIB'] = False
236 target_env_defs['WITH_BF_SDL'] = False
237 target_env_defs['WITH_BF_JPEG'] = False
238 target_env_defs['WITH_BF_PNG'] = False
239 target_env_defs['WITH_BF_BULLET'] = False
240 target_env_defs['WITH_BF_BINRELOC'] = False
241 target_env_defs['BF_BUILDINFO'] = False
242 target_env_defs['BF_NO_ELBEEM'] = True
243 target_env_defs['WITH_BF_PYTHON'] = False
245 # Merge blenderlite, let command line to override
246 for k,v in target_env_defs.iteritems():
247 if k not in B.arguments:
251 if env['WITH_BF_OPENMP'] == 1:
252 if env['OURPLATFORM'] in ('win32-vc', 'win64-vc'):
253 env['CCFLAGS'].append('/openmp')
254 env['CPPFLAGS'].append('/openmp')
255 env['CXXFLAGS'].append('/openmp')
257 if env['CC'].endswith('icc'): # to be able to handle CC=/opt/bla/icc case
258 env.Append(LINKFLAGS=['-openmp', '-static-intel'])
259 env['CCFLAGS'].append('-openmp')
260 env['CPPFLAGS'].append('-openmp')
261 env['CXXFLAGS'].append('-openmp')
263 env.Append(CCFLAGS=['-fopenmp'])
264 env.Append(CPPFLAGS=['-fopenmp'])
265 env.Append(CXXFLAGS=['-fopenmp'])
267 if env['WITH_GHOST_COCOA'] == True:
268 env.Append(CFLAGS=['-DGHOST_COCOA'])
269 env.Append(CXXFLAGS=['-DGHOST_COCOA'])
270 env.Append(CPPFLAGS=['-DGHOST_COCOA'])
272 if env['USE_QTKIT'] == True:
273 env.Append(CFLAGS=['-DUSE_QTKIT'])
274 env.Append(CXXFLAGS=['-DUSE_QTKIT'])
275 env.Append(CPPFLAGS=['-DUSE_QTKIT'])
277 #check for additional debug libnames
279 if env.has_key('BF_DEBUG_LIBS'):
280 B.quickdebug += env['BF_DEBUG_LIBS']
282 printdebug = B.arguments.get('BF_LISTDEBUG', 0)
284 if len(B.quickdebug) > 0 and printdebug != 0:
285 print B.bc.OKGREEN + "Buildings these libs with debug symbols:" + B.bc.ENDC
286 for l in B.quickdebug:
289 # remove stdc++ from LLIBS if we are building a statc linked CXXFLAGS
290 if env['WITH_BF_STATICCXX']:
291 if 'stdc++' in env['LLIBS']:
292 env['LLIBS'].remove('stdc++')
294 print '\tcould not remove stdc++ library from LLIBS, WITH_BF_STATICCXX may not work for your platform'
296 # check target for blenderplayer. Set WITH_BF_PLAYER if found on cmdline
297 if 'blenderplayer' in B.targets:
298 env['WITH_BF_PLAYER'] = True
300 if 'blendernogame' in B.targets:
301 env['WITH_BF_GAMEENGINE'] = False
303 # disable elbeem (fluidsim) compilation?
304 if env['BF_NO_ELBEEM'] == 1:
305 env['CPPFLAGS'].append('-DDISABLE_ELBEEM')
306 env['CXXFLAGS'].append('-DDISABLE_ELBEEM')
307 env['CCFLAGS'].append('-DDISABLE_ELBEEM')
309 if env['WITH_BF_SDL'] == False and env['OURPLATFORM'] in ('win32-vc', 'win32-ming', 'win64-vc'):
310 env['PLATFORM_LINKFLAGS'].remove('/ENTRY:mainCRTStartup')
311 env['PLATFORM_LINKFLAGS'].append('/ENTRY:main')
313 # lastly we check for root_build_dir ( we should not do before, otherwise we might do wrong builddir
314 B.root_build_dir = env['BF_BUILDDIR']
315 B.doc_build_dir = os.path.join(env['BF_INSTALLDIR'], 'doc')
316 if not B.root_build_dir[-1]==os.sep:
317 B.root_build_dir += os.sep
318 if not B.doc_build_dir[-1]==os.sep:
319 B.doc_build_dir += os.sep
321 # We do a shortcut for clean when no quicklist is given: just delete
322 # builddir without reading in SConscripts
324 if 'clean' in B.targets:
327 if not quickie and do_clean:
328 if os.path.exists(B.doc_build_dir):
329 print B.bc.HEADER+'Cleaning doc dir...'+B.bc.ENDC
330 dirs = os.listdir(B.doc_build_dir)
332 if os.path.isdir(B.doc_build_dir + entry) == 1:
333 print "clean dir %s"%(B.doc_build_dir+entry)
334 shutil.rmtree(B.doc_build_dir+entry)
336 print "remove file %s"%(B.doc_build_dir+entry)
337 os.remove(B.root_build_dir+entry)
338 if os.path.exists(B.root_build_dir):
339 print B.bc.HEADER+'Cleaning build dir...'+B.bc.ENDC
340 dirs = os.listdir(B.root_build_dir)
342 if os.path.isdir(B.root_build_dir + entry) == 1:
343 print "clean dir %s"%(B.root_build_dir+entry)
344 shutil.rmtree(B.root_build_dir+entry)
346 print "remove file %s"%(B.root_build_dir+entry)
347 os.remove(B.root_build_dir+entry)
348 for confile in ['extern/ffmpeg/config.mak', 'extern/x264/config.mak',
349 'extern/xvidcore/build/generic/platform.inc', 'extern/ffmpeg/include']:
350 if os.path.exists(confile):
351 print "clean file %s"%confile
352 if os.path.isdir(confile):
353 for root, dirs, files in os.walk(confile):
355 os.remove(os.path.join(root, name))
358 print B.bc.OKGREEN+'...done'+B.bc.ENDC
360 print B.bc.HEADER+'Already Clean, nothing to do.'+B.bc.ENDC
363 if not os.path.isdir ( B.root_build_dir):
364 os.makedirs ( B.root_build_dir )
365 os.makedirs ( B.root_build_dir + 'source' )
366 os.makedirs ( B.root_build_dir + 'intern' )
367 os.makedirs ( B.root_build_dir + 'extern' )
368 os.makedirs ( B.root_build_dir + 'lib' )
369 os.makedirs ( B.root_build_dir + 'bin' )
370 # # Docs not working with epy anymore
371 # if not os.path.isdir(B.doc_build_dir) and env['WITH_BF_DOCS']:
372 # os.makedirs ( B.doc_build_dir )
374 Help(opts.GenerateHelpText(env))
376 # default is new quieter output, but if you need to see the
377 # commands, do 'scons BF_QUIET=0'
378 bf_quietoutput = B.arguments.get('BF_QUIET', '1')
380 B.set_quiet_output(env)
385 print B.bc.HEADER+'Building in: ' + B.bc.ENDC + os.path.abspath(B.root_build_dir)
386 env.SConsignFile(B.root_build_dir+'scons-signatures')
389 ##### END SETUP ##########
393 BuildDir(B.root_build_dir+'/intern', 'intern', duplicate=0)
394 SConscript(B.root_build_dir+'/intern/SConscript')
395 BuildDir(B.root_build_dir+'/extern', 'extern', duplicate=0)
396 SConscript(B.root_build_dir+'/extern/SConscript')
397 BuildDir(B.root_build_dir+'/source', 'source', duplicate=0)
398 SConscript(B.root_build_dir+'/source/SConscript')
400 # now that we have read all SConscripts, we know what
401 # libraries will be built. Create list of
402 # libraries to give as objects to linking phase
404 for tp in B.possible_types:
405 if (not tp == 'player') and (not tp == 'player2'):
406 mainlist += B.create_blender_liblist(env, tp)
408 if B.arguments.get('BF_PRIORITYLIST', '0')=='1':
409 B.propose_priorities()
411 dobj = B.buildinfo(env, "dynamic") + B.resources
412 thestatlibs, thelibincs = B.setup_staticlibs(env)
413 thesyslibs = B.setup_syslibs(env)
415 if 'blender' in B.targets or not env['WITH_BF_NOBLENDER']:
416 env.BlenderProg(B.root_build_dir, "blender", mainlist + thestatlibs + dobj, thesyslibs, [B.root_build_dir+'/lib'] + thelibincs, 'blender')
417 if env['WITH_BF_PLAYER']:
418 playerlist = B.create_blender_liblist(env, 'player')
419 playerlist += B.create_blender_liblist(env, 'player2')
420 playerlist += B.create_blender_liblist(env, 'intern')
421 playerlist += B.create_blender_liblist(env, 'extern')
422 env.BlenderProg(B.root_build_dir, "blenderplayer", playerlist + thestatlibs + dobj, thesyslibs, [B.root_build_dir+'/lib'] + thelibincs, 'blenderplayer')
424 ##### Now define some targets
427 #------------ INSTALL
431 if env['OURPLATFORM']=='darwin':
432 for prg in B.program_list:
433 bundle = '%s.app' % prg[0]
434 bundledir = os.path.dirname(bundle)
435 for dp, dn, df in os.walk(bundle):
440 dir=env['BF_INSTALLDIR']+dp[len(bundledir):]
441 source=[dp+os.sep+f for f in df]
442 blenderinstall.append(env.Install(dir=dir,source=source))
444 blenderinstall = env.Install(dir=env['BF_INSTALLDIR'], source=B.program_list)
446 #-- local path = config files in install dir: installdir\VERSION
447 #- dont do config and scripts for darwin, it is already in the bundle
450 datafilestargetlist = []
454 if env['OURPLATFORM']!='darwin':
455 for dp, dn, df in os.walk('bin/.blender'):
462 if not env['WITH_BF_INTERNATIONAL']:
465 if f == '.Blanguages':
467 if not env['WITH_BF_FREETYPE']:
468 if f.endswith('.ttf'):
472 datafileslist.append(os.path.join(dp,f))
473 dir= os.path.join(*([env['BF_INSTALLDIR']] + [VERSION] + ['datafiles'] + dp.split(os.sep)[1:])) # skip bin
474 datafilestargetlist.append(dir + os.sep + f)
477 dotblendlist.append(os.path.join(dp, f))
478 dir= os.path.join(*([env['BF_INSTALLDIR']] + [VERSION] + ['config'] + dp.split(os.sep)[1:])) # skip bin
479 dottargetlist.append(dir + os.sep + f)
481 dotblenderinstall = []
482 for targetdir,srcfile in zip(dottargetlist, dotblendlist):
483 td, tf = os.path.split(targetdir)
484 dotblenderinstall.append(env.Install(dir=td, source=srcfile))
485 for targetdir,srcfile in zip(datafilestargetlist, datafileslist):
486 td, tf = os.path.split(targetdir)
487 dotblenderinstall.append(env.Install(dir=td, source=srcfile))
489 if env['WITH_BF_PYTHON']:
490 #-- local/VERSION/scripts
491 scriptpaths=['release/scripts']
492 for scriptpath in scriptpaths:
493 for dp, dn, df in os.walk(scriptpath):
498 if '__pycache__' in dn: # py3.2 cache dir
499 dn.remove('__pycache__')
501 dir = os.path.join(env['BF_INSTALLDIR'], VERSION)
502 dir += os.sep + os.path.basename(scriptpath) + dp[len(scriptpath):]
504 source=[os.path.join(dp, f) for f in df if not f.endswith(".pyc")]
505 # To ensure empty dirs are created too
507 env.Execute(Mkdir(dir))
508 scriptinstall.append(env.Install(dir=dir,source=source))
511 if env['OURPLATFORM']=='linux2':
515 for tp, tn, tf in os.walk('release/freedesktop/icons'):
521 iconlist.append(os.path.join(tp, f))
522 icontargetlist.append( os.path.join(*([env['BF_INSTALLDIR']] + tp.split(os.sep)[2:] + [f])) )
525 for targetdir,srcfile in zip(icontargetlist, iconlist):
526 td, tf = os.path.split(targetdir)
527 iconinstall.append(env.Install(dir=td, source=srcfile))
529 # dlls for linuxcross
530 # TODO - add more libs, for now this lets blenderlite run
531 if env['OURPLATFORM']=='linuxcross':
532 dir=env['BF_INSTALLDIR']
535 if env['WITH_BF_OPENMP']:
536 source += ['../lib/windows/pthreads/lib/pthreadGC2.dll']
538 scriptinstall.append(env.Install(dir=dir, source=source))
543 for tp, tn, tf in os.walk('release/plugins'):
548 df = tp[8:] # remove 'release/'
550 pluglist.append(os.path.join(tp, f))
551 plugtargetlist.append( os.path.join(env['BF_INSTALLDIR'], VERSION, df, f) )
554 # header files for plugins
555 pluglist.append('source/blender/blenpluginapi/documentation.h')
556 plugtargetlist.append(os.path.join(env['BF_INSTALLDIR'], VERSION, 'plugins', 'include', 'documentation.h'))
557 pluglist.append('source/blender/blenpluginapi/externdef.h')
558 plugtargetlist.append(os.path.join(env['BF_INSTALLDIR'], VERSION, 'plugins', 'include', 'externdef.h'))
559 pluglist.append('source/blender/blenpluginapi/floatpatch.h')
560 plugtargetlist.append(os.path.join(env['BF_INSTALLDIR'], VERSION, 'plugins', 'include', 'floatpatch.h'))
561 pluglist.append('source/blender/blenpluginapi/iff.h')
562 plugtargetlist.append(os.path.join(env['BF_INSTALLDIR'], VERSION, 'plugins', 'include', 'iff.h'))
563 pluglist.append('source/blender/blenpluginapi/plugin.h')
564 plugtargetlist.append(os.path.join(env['BF_INSTALLDIR'], VERSION, 'plugins', 'include', 'plugin.h'))
565 pluglist.append('source/blender/blenpluginapi/util.h')
566 plugtargetlist.append(os.path.join(env['BF_INSTALLDIR'], VERSION, 'plugins', 'include', 'util.h'))
567 pluglist.append('source/blender/blenpluginapi/plugin.DEF')
568 plugtargetlist.append(os.path.join(env['BF_INSTALLDIR'], VERSION, 'plugins', 'include', 'plugin.def'))
571 for targetdir,srcfile in zip(plugtargetlist, pluglist):
572 td, tf = os.path.split(targetdir)
573 plugininstall.append(env.Install(dir=td, source=srcfile))
577 for tp, tn, tf in os.walk('release/text'):
583 textlist.append(tp+os.sep+f)
585 textinstall = env.Install(dir=env['BF_INSTALLDIR'], source=textlist)
587 if env['OURPLATFORM']=='darwin':
588 allinstall = [blenderinstall, plugininstall, textinstall]
589 elif env['OURPLATFORM']=='linux2':
590 allinstall = [blenderinstall, dotblenderinstall, scriptinstall, plugininstall, textinstall, iconinstall]
592 allinstall = [blenderinstall, dotblenderinstall, scriptinstall, plugininstall, textinstall]
594 if env['OURPLATFORM'] in ('win32-vc', 'win32-mingw', 'win64-vc', 'linuxcross'):
597 if not env['OURPLATFORM'] in ('win32-mingw', 'win64-vc', 'linuxcross'):
598 # For MinGW and linuxcross static linking will be used
599 dllsources += ['${LCGDIR}/gettext/lib/gnu_gettext.dll']
601 #currently win64-vc doesn't appear to have libpng.dll
602 if env['OURPLATFORM'] != 'win64-vc':
603 dllsources += ['${BF_PNG_LIBPATH}/libpng.dll']
605 dllsources += ['${BF_ZLIB_LIBPATH}/zlib.dll']
606 # Used when linking to libtiff was dynamic
607 # keep it here until compilation on all platform would be ok
608 # dllsources += ['${BF_TIFF_LIBPATH}/${BF_TIFF_LIB}.dll']
610 if env['OURPLATFORM'] != 'linuxcross':
611 # pthreads library is already added
612 dllsources += ['${BF_PTHREADS_LIBPATH}/${BF_PTHREADS_LIB}.dll']
614 if env['WITH_BF_SDL']:
615 if env['OURPLATFORM'] == 'win64-vc':
616 pass # we link statically already to SDL on win64
618 dllsources.append('${BF_SDL_LIBPATH}/SDL.dll')
620 if env['WITH_BF_PYTHON']:
622 dllsources.append('${BF_PYTHON_LIBPATH}/${BF_PYTHON_DLL}_d.dll')
624 dllsources.append('${BF_PYTHON_LIBPATH}/${BF_PYTHON_DLL}.dll')
626 if env['WITH_BF_ICONV']:
627 if env['OURPLATFORM'] == 'win64-vc':
628 pass # we link statically to iconv on win64
629 elif not env['OURPLATFORM'] in ('win32-mingw', 'linuxcross'):
630 #gettext for MinGW and cross-compilation is compiled staticly
631 dllsources += ['${BF_ICONV_LIBPATH}/iconv.dll']
633 if env['WITH_BF_OPENAL']:
634 dllsources.append('${LCGDIR}/openal/lib/OpenAL32.dll')
635 dllsources.append('${LCGDIR}/openal/lib/wrap_oal.dll')
637 if env['WITH_BF_SNDFILE']:
638 dllsources.append('${LCGDIR}/sndfile/lib/libsndfile-1.dll')
640 if env['WITH_BF_FFMPEG']:
641 dllsources += ['${BF_FFMPEG_LIBPATH}/avcodec-52.dll',
642 '${BF_FFMPEG_LIBPATH}/avformat-52.dll',
643 '${BF_FFMPEG_LIBPATH}/avdevice-52.dll',
644 '${BF_FFMPEG_LIBPATH}/avutil-50.dll',
645 '${BF_FFMPEG_LIBPATH}/swscale-0.dll']
647 # Since the thumb handler is loaded by Explorer, architecture is
648 # strict: the x86 build fails on x64 Windows. We need to ship
649 # both builds in x86 packages.
651 dllsources.append('${LCGDIR}/thumbhandler/lib/BlendThumb.dll')
652 dllsources.append('${LCGDIR}/thumbhandler/lib/BlendThumb64.dll')
654 dllsources.append('#source/icons/blender.exe.manifest')
656 windlls = env.Install(dir=env['BF_INSTALLDIR'], source = dllsources)
657 allinstall += windlls
659 installtarget = env.Alias('install', allinstall)
660 bininstalltarget = env.Alias('install-bin', blenderinstall)
662 nsisaction = env.Action(btools.NSIS_Installer, btools.NSIS_print)
663 nsiscmd = env.Command('nsisinstaller', None, nsisaction)
664 nsisalias = env.Alias('nsis', nsiscmd)
666 if 'blender' in B.targets:
667 blenderexe= env.Alias('blender', B.program_list)
668 Depends(blenderexe,installtarget)
670 if env['WITH_BF_PLAYER']:
671 blenderplayer = env.Alias('blenderplayer', B.program_list)
672 Depends(blenderplayer,installtarget)
674 if not env['WITH_BF_GAMEENGINE']:
675 blendernogame = env.Alias('blendernogame', B.program_list)
676 Depends(blendernogame,installtarget)
678 if 'blenderlite' in B.targets:
679 blenderlite = env.Alias('blenderlite', B.program_list)
680 Depends(blenderlite,installtarget)
682 Depends(nsiscmd, allinstall)
684 buildslave_action = env.Action(btools.buildslave, btools.buildslave_print)
685 buildslave_cmd = env.Command('buildslave_exec', None, buildslave_action)
686 buildslave_alias = env.Alias('buildslave', buildslave_cmd)
688 Depends(buildslave_cmd, allinstall)
690 Default(B.program_list)
692 if not env['WITHOUT_BF_INSTALL']:
693 Default(installtarget)