G-CAMS-DATU/rt-thread/components/drivers/pic/SConscript

16 lines
258 B
Python
Raw Normal View History

2024-05-13 08:08:47 +00:00
from building import *
group = []
if not GetDepend(['RT_USING_PIC']):
Return('group')
cwd = GetCurrentDir()
CPPPATH = [cwd + '/../include']
src = ['pic.c']
group = DefineGroup('DeviceDrivers', src, depend = [''], CPPPATH = CPPPATH)
Return('group')