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