4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-19 01:13:31 +08:00

16 lines
263 B
Python
Raw Normal View History

2022-11-11 21:59:49 +00:00
# for module compiling
import os
Import('RTT_ROOT')
from building import *
cwd = GetCurrentDir()
# The set of source files associated with this SConscript file.
src = Split("""
main.c
""")
group = DefineGroup('Driver', src, depend = [''])
Return('group')