mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-21 10:03:31 +08:00
13 lines
286 B
Python
13 lines
286 B
Python
# RT-Thread building script for component
|
|
|
|
from building import *
|
|
|
|
cwd = GetCurrentDir()
|
|
group = []
|
|
if GetDepend('BSP_USING_SLCD'):
|
|
src = Glob('*.c') + Glob('*.cpp')
|
|
CPPPATH = [cwd]
|
|
group = DefineGroup('nu_pkgs_slcd', src, depend = [''], CPPPATH = CPPPATH)
|
|
|
|
Return('group')
|