You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
539 B
26 lines
539 B
from building import *
|
|
|
|
cwd = GetCurrentDir()
|
|
path = [cwd + '/include']
|
|
|
|
src = Glob('src/at_utils.c')
|
|
|
|
if GetDepend(['AT_USING_CLI']):
|
|
src += Glob('src/at_cli.c')
|
|
|
|
if GetDepend(['AT_USING_SERVER']):
|
|
src += Split('''
|
|
src/at_server.c
|
|
src/at_base_cmd.c
|
|
''')
|
|
|
|
if GetDepend(['AT_USING_CLIENT']):
|
|
src += Glob('src/at_client.c')
|
|
|
|
if GetDepend(['AT_USING_SOCKET']):
|
|
src += Glob('at_socket/*.c')
|
|
path += [cwd + '/at_socket']
|
|
|
|
group = DefineGroup('AT', src, depend = ['RT_USING_AT'], CPPPATH = path)
|
|
|
|
Return('group')
|
|
|