Files
rt-thread/components/drivers/hwcache/SConscript
2026-01-13 05:48:49 +00:00

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')