forked from xuos/xiuos
19 lines
281 B
Python
19 lines
281 B
Python
from building import *
|
|
|
|
cwd = GetCurrentDir()
|
|
src = [
|
|
'main.c'
|
|
]
|
|
CPPPATH = [cwd]
|
|
|
|
## 设置 lcd_test.c 的依赖宏
|
|
if GetDepend('BSP_USING_LCD'):
|
|
src += ['lcd_test.c']
|
|
|
|
group = DefineGroup('Applications', src, depend = [''], CPPPATH = CPPPATH)
|
|
|
|
Return('group')
|
|
|
|
|
|
|