mirror of
https://github.com/murphyzhao/FlexibleButton.git
synced 2023-11-24 09:39:02 +08:00
af57f8e761
Signed-off-by: MurphyZhao <d2014zjt@163.com>
15 lines
199 B
Python
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')
|