mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-22 00:19:20 +08:00
15 lines
287 B
Python
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')
|