mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-17 14:23:32 +08:00
f6c4572299
2.Add Kconfig file 3.Delete some unnecessary files and directories
17 lines
363 B
Python
17 lines
363 B
Python
from building import *
|
|
import rtconfig
|
|
|
|
cwd = GetCurrentDir()
|
|
|
|
src = [cwd + '/sys_config/sys_config.c']
|
|
src += [cwd + '/mss_gpio/mss_gpio.c']
|
|
src += [cwd + '/mss_uart/mss_uart.c']
|
|
|
|
CPPPATH = [cwd+'/sys_config']
|
|
CPPPATH += [cwd+'/mss_gpio']
|
|
CPPPATH += [cwd+'/mss_uart']
|
|
|
|
group = DefineGroup('Libraries', src, depend = [''], CPPPATH = CPPPATH)
|
|
|
|
Return('group')
|