4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-19 09:33:33 +08:00
2024-08-23 18:15:09 -04:00

22 lines
384 B
Python
Executable File

from building import *
group = []
if not GetDepend(['RT_USING_PIN']):
Return('group')
cwd = GetCurrentDir()
CPPPATH = [cwd + '/../include']
src = ['dev_pin.c']
if GetDepend(['RT_USING_DM']):
src += ['dev_pin_dm.c']
if GetDepend(['RT_USING_OFW']):
src += ['dev_pin_ofw.c']
group = DefineGroup('DeviceDrivers', src, depend = [''], CPPPATH = CPPPATH)
Return('group')