reactos/sdk/lib/drivers/rdbsslib/CMakeLists.txt
Joachim Henze dd3c540928 [RDBSSLIB][RTL] Fix build on MSVC bots
Addendum to 0.4.15-dev-1453-g 4ad7b6d
Looks like CMake on master does not longer understand the syntax of
replace_compile_flags().
Will investigate that later again, when other issues have been
solved that do currently prevent me from testing that locally at all.
Most likely remove_target_compile_option() has to be used instead now.
2020-12-17 14:33:26 +01:00

11 lines
294 B
CMake

add_definitions(-DUNICODE -D_UNICODE -DRDBSS_TRACKER)
include_directories(${REACTOS_SOURCE_DIR}/drivers/filesystems/mup
${REACTOS_SOURCE_DIR}/sdk/lib/drivers/copysup)
list(APPEND SOURCE
rdbss.c)
add_library(rdbsslib ${SOURCE})
add_dependencies(rdbsslib bugcodes xdk)