2021-12-20 07:42:29 +08:00
|
|
|
import os
|
2019-04-09 16:52:59 +08:00
|
|
|
from building import *
|
|
|
|
|
|
|
|
cwd = GetCurrentDir()
|
2019-04-10 21:46:21 +08:00
|
|
|
CPPPATH = [cwd]
|
2019-04-09 16:52:59 +08:00
|
|
|
src = Split("""
|
|
|
|
main.c
|
2019-04-22 16:03:03 +08:00
|
|
|
lcd_init.c
|
2019-04-09 16:52:59 +08:00
|
|
|
""")
|
|
|
|
|
2022-07-05 10:05:31 +08:00
|
|
|
if GetDepend(['PKG_USING_RTDUINO']) and not GetDepend(['RTDUINO_NO_SETUP_LOOP']):
|
|
|
|
src += ['arduino_main.cpp']
|
|
|
|
|
2019-04-09 16:52:59 +08:00
|
|
|
group = DefineGroup('Applications', src, depend = [''], CPPPATH = CPPPATH)
|
|
|
|
|
2021-12-20 07:42:29 +08:00
|
|
|
list = os.listdir(cwd)
|
|
|
|
for item in list:
|
|
|
|
if os.path.isfile(os.path.join(cwd, item, 'SConscript')):
|
|
|
|
group = group + SConscript(os.path.join(item, 'SConscript'))
|
|
|
|
|
2019-04-09 16:52:59 +08:00
|
|
|
Return('group')
|