Files
luban-lite/bsp/examples_bare/test-gpio/SConscript

14 lines
332 B
Python
Raw Normal View History

2024-01-27 08:47:24 +08:00
Import('AIC_ROOT')
Import('PRJ_KERNEL')
from building import *
cwd = GetCurrentDir()
CPPPATH = []
src = []
2025-01-08 19:12:06 +08:00
if (GetDepend('KERNEL_BAREMETAL') or GetDepend('KERNEL_FREERTOS')) and GetDepend('AIC_GPIO_DRV_TEST'):
2024-01-27 08:47:24 +08:00
src += Glob('test_gpio.c')
group = DefineGroup('test-gpio', src, depend = [''], CPPPATH = CPPPATH)
Return('group')