2021-10-12 10:35:37 -05:00
|
|
|
# RT-Thread building script for bridge
|
|
|
|
|
|
|
|
import os
|
|
|
|
from building import *
|
|
|
|
|
|
|
|
objs = []
|
|
|
|
cwd = GetCurrentDir()
|
|
|
|
|
2022-01-19 16:10:54 -05:00
|
|
|
objs = objs + SConscript(cwd + '/env_support/rt-thread/SConscript')
|
2021-10-12 10:35:37 -05:00
|
|
|
|
|
|
|
Return('objs')
|