4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-23 11:37:23 +08:00
2021-05-13 16:33:40 +08:00

15 lines
287 B
Python

import rtconfig
from building import *
# get current directory
cwd = GetCurrentDir()
CPPPATH = [cwd]
# The set of source files associated with this SConscript file.
src = Glob('*.c')
path = cwd
group = DefineGroup('ZYNQMP_HAL', src, depend = [''], CPPPATH = CPPPATH)
Return('group')