65384e5c57
Signed-off-by: a1012112796 <1012112796@qq.com>
10 lines
158 B
Python
10 lines
158 B
Python
from building import *
|
|
|
|
cwd = GetCurrentDir()
|
|
src = Glob('*.c')
|
|
path = [cwd]
|
|
|
|
group = DefineGroup('IAP', src, depend = [], CPPPATH = path)
|
|
|
|
Return('group')
|