[add]Add rtthread script support to better integrate into rtthread projects.

This commit is contained in:
Rbb666
2024-04-16 13:22:53 +08:00
parent 50738f2ab4
commit 5ee008c997
5 changed files with 452 additions and 0 deletions

11
SConscript Normal file
View File

@@ -0,0 +1,11 @@
# RT-Thread building script for bridge
import os
from building import *
objs = []
cwd = GetCurrentDir()
objs = objs + SConscript(cwd + '/lib/rt-thread/SConscript')
Return('objs')