Files

12 lines
208 B
Python
Raw Permalink Normal View History

2023-08-28 09:48:01 +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')