mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-12-25 00:37:18 +00:00
update module construction
git-svn-id: https://rt-thread.googlecode.com/svn/trunk@1422 bbd45198-f89e-11dd-88c7-29a3b14d5316
This commit is contained in:
@@ -1,38 +0,0 @@
|
||||
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)
|
||||
Reference in New Issue
Block a user