4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-31 09:50:27 +08:00
2021-05-15 16:52:49 +08:00

15 lines
281 B
Python

import os
from building import *
import rtconfig
cwd = GetCurrentDir()
src = []
CPPPATH = []
if GetDepend('RT_LINK_USING_UART'):
src += ['uart/rtlink_port_uart.c']
group = DefineGroup('rt-link-port', src, depend = ['RT_USING_RT_LINK'], CPPPATH = CPPPATH)
Return('group')