Merge pull request #26354 from ksooo/pvr-fix-listitem-titleextrainfo
[xbmc.git] / lib / libUPnP / Neptune / Build / Boot.scons
blob979573b90f59abebcc92b7d47caac8fe302ea39d
1 import sys
2 import os
3 import platform
5 EnsureSConsVersion(0,98,1)
7 #######################################################
8 # reusable functions and data structures
9 #######################################################
11 # Platform to Target Map (specifies which default target to build on a platform)
12 PLATFORM_TO_TARGET_MAP = {
13     'linux-i386'  : 'x86-unknown-linux',
14     'linux-x86_64': 'x86_64-unknown-linux',
15     'linux-arm'   : 'arm-unknown-linux',
16     'linux2'      : 'x86-unknown-linux',
17     'win32'       : 'x86-microsoft-win32',
18     'cygwin'      : 'x86-unknown-cygwin',
19     'darwin'      : 'universal-apple-macosx'
22 # list all target dirs
23 scons_root = Environment().GetBuildPath('#')
24 targets_dir = scons_root+'/Build/Targets'
25 targets_dirs = os.listdir(targets_dir)
26 TARGET_PLATFORMS = [x for x in targets_dirs if os.path.exists(targets_dir +'/'+x+'/Config.scons')]
28 def DefaultTarget():
29     platform_id = sys.platform
30     if platform.system() == 'Linux':
31         if (platform.machine() == 'i386' or
32             platform.machine() == 'i486' or
33             platform.machine() == 'i586'or
34             platform.machine() == 'i686'):
35             platform_id = 'linux-i386'
36         if (platform.machine() == 'x86_64'):
37             platform_id = 'linux-x86_64'
38         if (platform.machine().startswith('arm')):
39             platform_id = 'linux-arm'
41     if PLATFORM_TO_TARGET_MAP.has_key(platform_id):
42         return PLATFORM_TO_TARGET_MAP[platform_id]
43     else:
44         return None
46 #######################################################
47 # Main Build
48 #######################################################
49 options = Variables()
50 options.AddVariables(
51     EnumVariable('target', 'Build Target', DefaultTarget(), allowed_values=TARGET_PLATFORMS),
52     BoolVariable('stop_on_warning', 'Stop the build on warnings', False),
53     BoolVariable('shared', 'Build a shared library', False),
54     ListVariable('build_config', 'build configurations', 'Debug', names=['Debug', 'Release'])
57 env = Environment(variables=options)
58 Help(options.GenerateHelpText(env))
60 ### call the actual build script for each build config
61 base_env = env
62 for build_config in env['build_config']:
63     env = base_env.Clone()
64     env['build_config'] = build_config
65     print '********** Configuring Build Target =', env['target'], '/', build_config, '********'
66     SConscript('Build.scons', variant_dir='Targets/'+env['target']+'/'+build_config, exports='env', duplicate=0)