Welcome to mirror list, hosted at ThFree Co, Russian Federation.

bs_default.py « bs « scons « tools - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: df806415ef1273dcc1cc11c54eaf942c360a43cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Default target

import bs_globals

def noaction(env, target, source):
	print "Empty action"
	
def BlenderDefault(target):
	"""
	The default Blender build.
	"""
	def_env = bs_globals.init_env.Copy()
	default = def_env.Command('nozip', 'blender$PROGSUFFIX', noaction)
	if bs_globals.user_options_dict['BUILD_BLENDER_PLAYER'] == 1:
		def_env.Depends(default, 'blenderplayer$PROGSUFFIX')
	def_env.Alias(".", default)