mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-18 21:13:32 +08:00
13 lines
220 B
Python
13 lines
220 B
Python
from building import *
|
|
|
|
cwd = GetCurrentDir()
|
|
src = Split('''
|
|
pb_common.c
|
|
pb_decode.c
|
|
pb_encode.c
|
|
''')
|
|
CPPPATH = [cwd]
|
|
|
|
group = DefineGroup('Nanopb', src, depend = ['RT_USING_NANOPB'], CPPPATH = CPPPATH)
|
|
|
|
Return('group') |