blob: d457d9a47de43c0b93aab4704490660219dbb580 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# RT-Thread building script for bridge
import os
from building import *
objs = []
cwd = GetCurrentDir()
objs = objs + SConscript(cwd + '/env_support/rt-thread/SConscript')
Return('objs')
|