rt-thread/bsp/raspberry-pico/board/ports/lcd/SConscript

11 lines
194 B
Python
Raw Normal View History

from building import *
import os
cwd = GetCurrentDir()
src = ['drv_lcd.c']
CPPPATH = [cwd]
2023-01-09 10:14:23 +08:00
group = DefineGroup('Drivers', src, depend = ['BSP_USING_LVGL'], CPPPATH = CPPPATH)
Return('group')