SConscript 1.0 KB
Newer Older
qiuyiuestc's avatar
qiuyiuestc 已提交
1 2 3 4 5 6 7 8 9 10 11 12
Import('env')
Import('projects')
Import('RTT_ROOT')
Import('rtconfig')
Import('TARGET')

RTMLINKER = RTT_ROOT + '/tools/rtmlinker.exe '

# group definitions
group = {}
group['CCFLAGS'] = ''
group['CPPPATH'] = [RTT_ROOT + '/include',
qiuyiuestc's avatar
qiuyiuestc 已提交
13
		RTT_ROOT + '/examples/module',
qiuyiuestc's avatar
qiuyiuestc 已提交
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 39 40
		RTT_ROOT + '/components/rtgui/include',
		RTT_ROOT + '/components/rgtui/common', 
		RTT_ROOT + '/components/rtgui/server', 
		RTT_ROOT + '/components/rtgui/widgets']
group['CPPDEFINES'] = ''

target = 'tetris.so'
POST_ACTION = RTMLINKER + ' -l ' + TARGET + ' -o tetris.mo ' + '$TARGET'

# add group to project list
projects.append(group)

src_local = Split("""
application.c
tetris_ui.c
tetris_modal.c
tetris_view.c
""")

env.Append(CCFLAGS = group['CCFLAGS'])
env.Append(CPPPATH = group['CPPPATH'])
env.Append(CPPDEFINES = group['CPPDEFINES'])
module_env = env.Clone(CCFLAGS = ' -mcpu=arm920t -O0 -fPIC')
module_env.Replace(LINKFLAGS = '-z max-page-size=0x4 -shared -fPIC -e rt_application_init -nostdlib -s')
module_env.Program(target, src_local) 
module_env.AddPostAction(target, POST_ACTION)