38 lines
1.1 KiB
Python
38 lines
1.1 KiB
Python
import os
|
|
import sys
|
|
import rtconfig
|
|
|
|
RTT_ROOT = os.path.normpath(os.getcwd() + '/../..')
|
|
sys.path = sys.path + [os.path.join(RTT_ROOT, 'tools')]
|
|
import building
|
|
|
|
target = RTT_ROOT + '/bsp/mini2440/rtthread-mini2440'
|
|
projects = []
|
|
|
|
AddOption('--target',
|
|
dest='target',
|
|
type='string',
|
|
help='set target project: mdk')
|
|
|
|
if GetOption('target'):
|
|
SetOption('no_exec', 1)
|
|
|
|
TARGET = target + '.' + rtconfig.TARGET_EXT
|
|
|
|
env = Environment(tools = ['mingw'],
|
|
AS = rtconfig.AS, ASFLAGS = rtconfig.AFLAGS,
|
|
CC = rtconfig.CC, CCFLAGS = rtconfig.CFLAGS,
|
|
AR = rtconfig.AR, ARFLAGS = '-rc',
|
|
LINK = rtconfig.LINK, LINKFLAGS = rtconfig.LFLAGS)
|
|
env.PrependENVPath('PATH', rtconfig.EXEC_PATH)
|
|
|
|
Export('env')
|
|
Export('RTT_ROOT')
|
|
Export('rtconfig')
|
|
Export('projects')
|
|
Export('TARGET')
|
|
|
|
SConscript(RTT_ROOT + '/examples/module/tetris/SConscript', duplicate=0)
|
|
SConscript(RTT_ROOT + '/examples/module/basicapp/SConscript', duplicate=0)
|
|
SConscript(RTT_ROOT + '/examples/module/extension/SConscript', duplicate=0)
|
|
SConscript(RTT_ROOT + '/examples/module/extapp/SConscript', duplicate=0) |