# for module compiling
import os
Import('OS_ROOT')
from build_tools import *

pwd = PresentDir()

path =  [pwd]

src = []

src += Glob('*.c')

objs = AddCodeGroup('gui', src, depend = ['OS_USING_GUI_LVGL_GIF'], CPPPATH = [pwd])

Return('objs')