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