mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-28 03:00:25 +08:00
3b1ce1e4b6
* legacy fdt * update fdt
11 lines
188 B
Python
11 lines
188 B
Python
from building import *
|
|
|
|
cwd = GetCurrentDir()
|
|
src = Glob('*.c')
|
|
|
|
CPPPATH = [cwd]
|
|
|
|
group = DefineGroup('FDT', src, depend = ['RT_USING_FDTLIB'], CPPPATH = CPPPATH)
|
|
|
|
Return('group')
|