mirror of
https://github.com/reactos/reactos.git
synced 2025-07-08 12:38:03 +00:00

Allows to complete the whole 'ninja bootcd' after 'configure -DCMAKE_BUILD_TYPE=Release'
for compiler MSVC 2010SP1 16.0.40219.1 with RosBE 2.1.6
Similar to the fix committed in 0.4.15-dev-1453-g 4ad7b6d
15 lines
445 B
CMake
15 lines
445 B
CMake
add_definitions(-DUNICODE -D_UNICODE -DRDBSS_TRACKER)
|
|
|
|
include_directories(${REACTOS_SOURCE_DIR}/drivers/filesystems/mup
|
|
${REACTOS_SOURCE_DIR}/sdk/lib/drivers/copysup)
|
|
|
|
if(MSVC)
|
|
# error C4101: 'BreakpointsSave' : unreferenced local variable in Release-Configuration
|
|
replace_compile_flags("/we4101" " ")
|
|
endif()
|
|
|
|
list(APPEND SOURCE
|
|
rdbss.c)
|
|
|
|
add_library(rdbsslib ${SOURCE})
|
|
add_dependencies(rdbsslib bugcodes xdk)
|