forked from xuos/xiuos
10 lines
235 B
Python
10 lines
235 B
Python
from building import *
|
|
import os
|
|
|
|
cwd = GetCurrentDir()
|
|
src = []
|
|
if GetDepend(['ADAPTER_EC200A']):
|
|
src += ['ec200a.c', 'ec200a_mqtt.c']
|
|
group = DefineGroup('connection 4g ec200a', src, depend = [], CPPPATH = [cwd])
|
|
|
|
Return('group') |