| 1234567891011121314151617181920212223 |
- Import('RTT_ROOT')
- from building import *
- # get current directory
- cwd = GetCurrentDir()
- # The set of source files associated with this SConscript file.
- src = Glob('src/*.c')
- if GetDepend('PKG_USING_PDULIB_EXAMPLES'):
- src += Glob('examples/*.c');
- path = [cwd + '/include']
- group = DefineGroup('pdulib', src,depend = ['PKG_USING_PDULIB'], CPPPATH = path)
- Return('group')
|