mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-16 21:03:30 +08:00
13 lines
252 B
Python
13 lines
252 B
Python
|
Import('RTT_ROOT')
|
||
|
Import('rtconfig')
|
||
|
from building import *
|
||
|
|
||
|
src = Split('''
|
||
|
simple.c
|
||
|
simple.pb.c
|
||
|
''')
|
||
|
CPPPATH = [RTT_ROOT + '/examples/nanopb']
|
||
|
|
||
|
group = DefineGroup('Nanopb_test', src, depend = ['RT_USING_NANOPB'], CPPPATH = CPPPATH)
|
||
|
|
||
|
Return('group')
|