c258ca794d
[dlib/sys/time.h] Fix iar version problem [bsp/stm32f429-apollo/applications/SConscript] Remove CPPDEFINES
18 lines
326 B
Python
18 lines
326 B
Python
import rtconfig
|
|
from building import *
|
|
|
|
cwd = GetCurrentDir()
|
|
CPPPATH = [cwd, str(Dir('#'))]
|
|
src = Split("""
|
|
application.c
|
|
startup.c
|
|
""")
|
|
|
|
# add UI engine demo.
|
|
if GetDepend('RT_USING_GUIENGINE'):
|
|
src += ['rtgui_demo.c']
|
|
|
|
group = DefineGroup('Applications', src, depend = [''], CPPPATH = CPPPATH)
|
|
|
|
Return('group')
|