Files

12 lines
208 B
Python
Raw Permalink Normal View History

2023-08-30 16:21:18 +08:00
import os
from building import *
cwd = GetCurrentDir()
src = Glob('*.c')
CPPPATH = []
group = DefineGroup('FreeRTOS_test', src, depend = ['LPKG_FREERTOS_WRAPPER_TEST'], CPPPATH = CPPPATH)
Return('group')