2022-11-14 22:19:27 -05:00

16 lines
263 B
Python

# 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')