mirror of
https://github.com/hathach/tinyusb.git
synced 2025-01-17 05:32:55 +08:00
12 lines
184 B
Python
12 lines
184 B
Python
|
# RT-Thread building script for bridge
|
||
|
|
||
|
import os
|
||
|
from building import *
|
||
|
|
||
|
objs = []
|
||
|
cwd = GetCurrentDir()
|
||
|
|
||
|
objs = objs + SConscript(cwd + '/lib/rt-thread/SConscript')
|
||
|
|
||
|
Return('objs')
|