10 lines
227 B
Python
10 lines
227 B
Python
|
from building import *
|
||
|
|
||
|
cwd = GetCurrentDir()
|
||
|
src = Glob('*.c') + Glob('*.cpp')
|
||
|
CPPPATH = [cwd]
|
||
|
|
||
|
group = DefineGroup('agile_button', src, depend = ['PKG_AGILE_BUTTON_USING_EXAMPLE'], CPPPATH = CPPPATH)
|
||
|
|
||
|
Return('group')
|