mirror of
https://gitee.com/Vancouver2017/luban-lite-t3e-pro.git
synced 2025-12-16 19:38:56 +00:00
16 lines
331 B
Python
16 lines
331 B
Python
|
|
import rtconfig
|
||
|
|
Import('RTT_ROOT')
|
||
|
|
from building import *
|
||
|
|
|
||
|
|
# get current directory
|
||
|
|
cwd = GetCurrentDir()
|
||
|
|
path = [cwd]
|
||
|
|
src = []
|
||
|
|
|
||
|
|
if GetDepend('RTT_POSIX_TESTCASE_ERRNO_H'):
|
||
|
|
src += Glob('./definitions/*.c')
|
||
|
|
|
||
|
|
group = DefineGroup('rtt_posix_testcase', src, depend = ['RTT_POSIX_TESTCASE_ERRNO_H'], CPPPATH = path)
|
||
|
|
|
||
|
|
Return('group')
|