diff options
| author | Ha Thach <[email protected]> | 2024-04-25 11:48:59 +0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2024-04-25 11:48:59 +0700 |
| commit | c237d18ef5c6f5ca6ad625a3b22bdaaaa1df55e8 (patch) | |
| tree | bd0d9e37fb5a072d0a1e6e155d892ce3c2a04993 /SConscript | |
| parent | 313d96677f8938ee67048d6aa8d666c9b87fad24 (diff) | |
| parent | d664cbfcdd1ab34dd82079a7b0a5bec339c37b81 (diff) | |
Merge pull request #2599 from Rbb666/rtthread
[osal]Add rt-thread script support.
Diffstat (limited to 'SConscript')
| -rw-r--r-- | SConscript | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/SConscript b/SConscript new file mode 100644 index 000000000..b5043f437 --- /dev/null +++ b/SConscript @@ -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') |
