提交 b5d61a37 编写于 作者: S SummerGift

[修改]:修改sconscript文件以便于配置工程。

上级 a43f1f48
......@@ -3,9 +3,19 @@ Import('rtconfig')
from building import *
cwd = os.path.join(str(Dir('#')), 'applications')
src = Glob('*.c')
#src = Glob('*.c')
CPPPATH = [cwd, str(Dir('#'))]
group = DefineGroup('Applications', src, depend = ['RT_USING_GUIENGINE'], CPPPATH = CPPPATH)
src = Split("""
application.c
startup.c
""")
# add gpio drivers.
if GetDepend('RT_USING_GUIENGINE'):
src += ['rtgui_demo.c']
group = DefineGroup('Applications', src, depend = [''], CPPPATH = CPPPATH)
Return('group')
......@@ -11,11 +11,12 @@ stm32f4xx_it.c
usart.c
drv_sdram.c
drv_rtc.c
drv_sdio_sd.c
drv_nand.c
drv_mpu.c
""")
#drv_sdio_sd.c
# add Ethernet drivers.
if GetDepend('RT_USING_LWIP'):
src += ['drv_eth.c', 'drv_iic.c', 'drv_pcf8574.c']
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册