Files
luban-lite/bsp/examples/test-i2c/SConscript

15 lines
299 B
Python
Raw Normal View History

2023-11-09 20:19:51 +08:00
Import('AIC_ROOT')
Import('PRJ_KERNEL')
from building import *
cwd = GetCurrentDir()
CPPPATH = []
src = []
2024-06-04 19:00:30 +08:00
if GetDepend('AIC_I2C_DRV_TEST') and GetDepend('RT_USING_FINSH'):
src = Glob('test_i2c_slave.c')
2023-11-09 20:19:51 +08:00
group = DefineGroup('test-i2c', src, depend = [''], CPPPATH = CPPPATH)
Return('group')