mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2026-03-25 10:39:32 +08:00
14 lines
303 B
Python
Executable File
14 lines
303 B
Python
Executable File
from building import *
|
|
|
|
group = []
|
|
src = []
|
|
cwd = GetCurrentDir()
|
|
CPPPATH = [cwd + '/../include', cwd + '/../../../../components/drivers/pin']
|
|
|
|
if GetDepend(['RT_PIN_ROCKCHIP']):
|
|
src += ['pin-rockchip.c']
|
|
|
|
group = DefineGroup('DeviceDrivers', src, depend = [''], CPPPATH = CPPPATH)
|
|
|
|
Return('group')
|