diff options
| author | Rbb666 <[email protected]> | 2024-04-16 13:22:53 +0800 |
|---|---|---|
| committer | Rbb666 <[email protected]> | 2024-04-18 13:31:31 +0800 |
| commit | 5ee008c9974621cd4930d2975040717e71c16b84 (patch) | |
| tree | 2e51d31470b6a85a9ab5cd467b540e17d979cf4a /SConscript | |
| parent | 50738f2ab4cbb3d1c00db994279dec620b2870f0 (diff) | |
[add]Add rtthread script support to better integrate into rtthread projects.
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') |
