mirror of
https://github.com/reactos/reactos.git
synced 2025-01-07 06:45:24 +00:00
7416328523
Instead of adding the rtl_vista library to the target, manually add the related source files to compilation. That's not the best, but this should definitively fix the linking problem.
20 lines
542 B
CMake
20 lines
542 B
CMake
remove_definitions(-D_WIN32_WINNT=0x502)
|
|
add_definitions(-D_WIN32_WINNT=0x600)
|
|
|
|
add_definitions(-DUNICODE -D_UNICODE -D__NTOSKRNL__ -D_NTOSKRNL_ -D_NTSYSTEM_)
|
|
|
|
include_directories(${REACTOS_SOURCE_DIR}/sdk/lib/rtl)
|
|
|
|
list(APPEND SOURCE
|
|
etw.c
|
|
fsrtl.c
|
|
io.c
|
|
po.c
|
|
ke.c
|
|
${REACTOS_SOURCE_DIR}/sdk/lib/rtl/utf8.c)
|
|
|
|
add_library(ntoskrnl_vista ${SOURCE})
|
|
target_link_libraries(ntoskrnl_vista PRIVATE pseh) # rtl_vista)
|
|
add_dependencies(ntoskrnl_vista bugcodes xdk)
|
|
|
|
target_compile_definitions(ntoskrnl_vista PUBLIC NTKRNLVISTA)
|