1# RT-Thread building script for component
2
3from building import *
4
5cwd = GetCurrentDir()
6src = []
7CPPPATH = [cwd]
8
9if GetDepend('BSP_USING_HARDLOCK'):
10 src += ['drv_hardlock.c']
11
12group = DefineGroup('HARDLOCK', src, depend = [], CPPPATH = CPPPATH)
13
14Return('group')
15