2e1de690f2
git-svn-id: https://rt-thread.googlecode.com/svn/trunk@2534 bbd45198-f89e-11dd-88c7-29a3b14d5316
11 lines
210 B
Python
11 lines
210 B
Python
import rtconfig
|
|
from building import *
|
|
|
|
src = Glob('*.c') + Glob('*.cpp')
|
|
cwd = GetCurrentDir()
|
|
|
|
CPPPATH = [cwd]
|
|
group = DefineGroup('snake', src, depend = ['RT_USING_RTGUI'], CPPPATH=CPPPATH)
|
|
|
|
Return('group')
|