exectos/sdk/xtklib/CMakeLists.txt
belliash e61108d9b5
All checks were successful
ci/woodpecker/push/build Pipeline was successful
Implement RtlCopyMemory() and RtlSameMemory(), no inline functions in static library
2022-08-21 16:27:57 +02:00

19 lines
475 B
CMake

# XT kernel-mode library
PROJECT(XTKLIB)
# Specify include directories
include_directories(
${EXECTOS_SOURCE_DIR}/sdk/xtdk
${XTKLIB_SOURCE_DIR}/includes)
# 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}/rtl/memory.c
${XTKLIB_SOURCE_DIR}/rtl/plist.c
${XTKLIB_SOURCE_DIR}/rtl/widestr.c)
# Add library
add_library(xtklib ${XTKLIB_SOURCE})