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

bs_config.py « bs « scons « tools - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 23b01f9877552f7dbffc7b3db42149ea99e58c15 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# configuration functions
import sys
import os

#import SCons.Script
import bs_globals

def checkPyVersion():
	if hex(sys.hexversion) < 0x2030000:
		print ">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>"
		print
		print "You need at least Python 2.3 to build Blender with SCons"
		print
		print ">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>"
		sys.exit()

def parseOpts():
	copyloc = ''
	
	all_args = sys.argv[1:]
#	parser =  SCons.Script.OptParser()
#	options, targets = parser.parse_args(all_args)
	if ('clean' in bs_globals.targets):
		bs_globals.enable_clean = 1
	
	# User configurable options file. This can be controlled by the user by running
	# scons with the following argument: CONFIG=user_config_options_file
	bs_globals.config_file = bs_globals.arguments.get('CONFIG', 'config.opts')
	bs_globals.root_build_dir = bs_globals.arguments.get('root_build_dir', '..' + os.sep + 'build' + os.sep + sys.platform + os.sep)
	
	copyloc = bs_globals.arguments.get('copyto', '0')
	if copyloc == '0':
		bs_globals.docopy = 0;
	else:
		bs_globals.docopy = 1;
		bs_globals.copyto = copyloc