mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2026-02-05 15:23:03 +08:00
15 lines
263 B
Python
Executable File
15 lines
263 B
Python
Executable File
from building import *
|
|
|
|
group = []
|
|
cwd = GetCurrentDir()
|
|
CPPPATH = [cwd + '/../include']
|
|
|
|
src = []
|
|
|
|
if GetDepend(['RT_USING_ADC']):
|
|
src += ['adc-rockchip_saradc.c']
|
|
|
|
group = DefineGroup('DeviceDrivers', src, depend = [''], CPPPATH = CPPPATH)
|
|
|
|
Return('group')
|