0a6aaf12ad
Co-authored-by: Supper Thomas <78900636@qq.com>
20 lines
304 B
Python
20 lines
304 B
Python
import os
|
|
from building import *
|
|
|
|
src = Split("""
|
|
src/rt-thread_balance_stub.c
|
|
src/x509_crt_bundle.S
|
|
src/port.c
|
|
src/port_common.c
|
|
""")
|
|
|
|
CPPPATH = Split(
|
|
"""
|
|
include
|
|
include/freertos
|
|
""")
|
|
|
|
group = DefineGroup('idf_port', src, depend = [''], CPPPATH = CPPPATH)
|
|
|
|
Return('group')
|