rt-thread/components/drivers/hwcache/SConscript

16 lines
266 B
Python

from building import *
group = []
if not GetDepend(['RT_USING_HWCACHE']):
Return('group')
cwd = GetCurrentDir()
CPPPATH = [cwd + '/../include']
src = ['hwcache.c']
group = DefineGroup('DeviceDrivers', src, depend = [''], CPPPATH = CPPPATH)
Return('group')