rt-thread-official/components/utilities/rt-link/hw_port/SConscript

15 lines
281 B
Python
Raw Normal View History

2021-05-15 16:52:49 +08:00
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')