a6151716b2
* 添加STM32F410 NUCLEO RTDUINO * 修改stm32f410 nuleco RTDUINO * 修改stm32f410 nuleco RTDUINO * Update Sconscript Co-authored-by: Man, Jianting (Meco) <920369182@qq.com>
10 lines
193 B
Plaintext
10 lines
193 B
Plaintext
from building import *
|
|
|
|
cwd = GetCurrentDir()
|
|
src = Glob('*.c') + Glob('*.cpp')
|
|
inc = [cwd]
|
|
|
|
group = DefineGroup('RTduino', src, depend = ['PKG_USING_RTDUINO'], CPPPATH = inc)
|
|
|
|
Return('group')
|