mirror of
https://gitee.com/Vancouver2017/luban-lite.git
synced 2025-12-16 09:08:56 +00:00
14 lines
332 B
Python
14 lines
332 B
Python
Import('AIC_ROOT')
|
|
Import('PRJ_KERNEL')
|
|
from building import *
|
|
|
|
cwd = GetCurrentDir()
|
|
CPPPATH = []
|
|
src = []
|
|
if (GetDepend('KERNEL_BAREMETAL') or GetDepend('KERNEL_FREERTOS')) and GetDepend('AIC_GPIO_DRV_TEST'):
|
|
src += Glob('test_gpio.c')
|
|
|
|
group = DefineGroup('test-gpio', src, depend = [''], CPPPATH = CPPPATH)
|
|
|
|
Return('group')
|