10 lines
202 B
Python
10 lines
202 B
Python
|
from building import *
|
||
|
|
||
|
cwd = GetCurrentDir()
|
||
|
src = Glob('*.c')
|
||
|
path = [cwd + '/..', cwd + '/../inc', cwd + '/../../inc']
|
||
|
|
||
|
group = DefineGroup('gh', src, depend = [''], CPPPATH = path)
|
||
|
|
||
|
Return('group')
|