Files
luban-lite-t3e-pro/bsp/examples_bare/test-gpio/SConscript
刘可亮 9f7ba67007 v1.0.3
2024-01-27 08:47:24 +08:00

14 lines
298 B
Python

Import('AIC_ROOT')
Import('PRJ_KERNEL')
from building import *
cwd = GetCurrentDir()
CPPPATH = []
src = []
if GetDepend('KERNEL_BAREMETAL') and GetDepend('AIC_GPIO_DRV_TEST'):
src += Glob('test_gpio.c')
group = DefineGroup('test-gpio', src, depend = [''], CPPPATH = CPPPATH)
Return('group')