Implement RtlWideStringCompare() and RtlWideStringTokenize() routines
All checks were successful
ci/woodpecker/push/build Pipeline was successful

This commit is contained in:
2022-08-13 13:18:52 +02:00
parent ba1efee47e
commit 3f372f19e3
4 changed files with 151 additions and 1 deletions

View File

@@ -9,7 +9,8 @@ include_directories(
# Specify list of source code files
list(APPEND XTKLIB_SOURCE
${XTKLIB_SOURCE_DIR}/hl/cport.c
${XTKLIB_SOURCE_DIR}/hl/${ARCH}/cpufunc.c)
${XTKLIB_SOURCE_DIR}/hl/${ARCH}/cpufunc.c
${XTKLIB_SOURCE_DIR}/rtl/widestr.c)
# Add library
add_library(xtklib ${XTKLIB_SOURCE})