2025-03-19 16:50:09 +08:00
|
|
|
file(GLOB FILELIST
|
|
|
|
|
printf.c
|
|
|
|
|
vsnprintf.c
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
set(TARGET printf)
|
|
|
|
|
add_library(${TARGET} STATIC ${FILELIST})
|
|
|
|
|
|
2025-03-22 21:13:21 +08:00
|
|
|
target_include_directories(${TARGET} PUBLIC ${SDK_BASE_DIR}/driver/inc)
|
|
|
|
|
target_include_directories(${TARGET} PUBLIC ${SDK_BASE_DIR}/driver/inc/reg)
|