rt-thread/bsp/nuvoton/libraries/nu_packages/ADC_TOUCH/SConscript

14 lines
318 B
Python
Raw Normal View History

# RT-Thread building script for component
Import('RTT_ROOT')
from building import *
cwd = GetCurrentDir()
group = []
if GetDepend('NU_PKG_USING_ADC_TOUCH'):
2023-01-09 10:14:23 +08:00
src = Glob('*.c') + Glob('*.cpp')
CPPPATH = [cwd]
group = DefineGroup('nu_pkgs_adc_touch', src, depend = [''], CPPPATH = CPPPATH)
Return('group')