perf_counter/SConscript

13 lines
299 B
Python
Raw Normal View History

2022-06-12 19:43:30 -04:00
Import('rtconfig')
from building import *
2022-06-13 20:02:01 -04:00
src = ['perf_counter.c', 'os/perf_os_patch_rt_thread.c']
2022-06-12 19:43:30 -04:00
cwd = GetCurrentDir()
path = [cwd]
group = []
2022-06-13 20:02:01 -04:00
group = DefineGroup('perf_counter', src, depend = ['PKG_USING_PERF_COUNTER'], CPPDEFINES = ['__PERF_CNT_USE_RTOS__'], CPPPATH = path)
2022-06-12 19:43:30 -04:00
Return('group')