FlexibleButton/SConscript
MurphyZhao af57f8e761 [ADD] Add flexible button library
Signed-off-by: MurphyZhao <d2014zjt@163.com>
2018-10-11 16:41:21 +08:00

15 lines
199 B
Python

from building import *
import rtconfig
cwd = GetCurrentDir()
src = []
src += Glob('*.c')
CPPPATH = [cwd]
group = DefineGroup('flex_button', src, depend = [], CPPPATH = CPPPATH)
Return('group')