forked from xuos/xiuos
10 lines
219 B
Python
10 lines
219 B
Python
from building import *
|
|
import os
|
|
|
|
cwd = GetCurrentDir()
|
|
src = []
|
|
if GetDepend(['ADAPTER_HC08']):
|
|
src += ['hc08.c']
|
|
group = DefineGroup('connection bluetooth hc08', src, depend = [], CPPPATH = [cwd])
|
|
|
|
Return('group') |