2021-10-04 09:17:44 +08:00
|
|
|
# RT-Thread building script for bridge
|
|
|
|
|
2021-09-30 15:53:42 +08:00
|
|
|
import os
|
2021-08-04 01:25:47 +08:00
|
|
|
from building import *
|
|
|
|
|
2021-09-30 15:53:42 +08:00
|
|
|
objs = []
|
|
|
|
cwd = GetCurrentDir()
|
2021-08-05 03:19:24 +08:00
|
|
|
|
2021-09-30 15:53:42 +08:00
|
|
|
objs = objs + SConscript(cwd + '/sys/rt-thread/SConscript')
|
2021-08-05 03:19:24 +08:00
|
|
|
|
2021-09-30 15:53:42 +08:00
|
|
|
Return('objs')
|