2955dbfcda
git-svn-id: https://rt-thread.googlecode.com/svn/trunk@2487 bbd45198-f89e-11dd-88c7-29a3b14d5316
10 lines
165 B
Python
10 lines
165 B
Python
from building import *
|
|
|
|
cwd = GetCurrentDir()
|
|
src = Glob('*.c')
|
|
CPPPATH = [cwd]
|
|
|
|
group = DefineGroup('lpc_ip', src, depend = [], CPPPATH = CPPPATH)
|
|
|
|
Return('group')
|