mirror of
https://github.com/reactos/reactos.git
synced 2025-01-08 07:11:16 +00:00
0bd8a2110b
But include registry changes and INF files depending on SARCH variable.
This commit is expected to uncover pc98vid build error on MSVC 2015.
Addendum to 8c475e4
. CORE-17529
17 lines
383 B
CMake
17 lines
383 B
CMake
|
|
list(APPEND SOURCE
|
|
xboxvmp.c
|
|
xboxvmp.h)
|
|
|
|
add_library(xboxvmp MODULE
|
|
${SOURCE}
|
|
xboxvmp.rc)
|
|
|
|
set_module_type(xboxvmp kernelmodedriver)
|
|
add_importlibs(xboxvmp ntoskrnl videoprt)
|
|
|
|
if(SARCH STREQUAL "xbox")
|
|
add_cd_file(TARGET xboxvmp DESTINATION reactos/system32/drivers FOR all)
|
|
add_registry_inf(xboxvmp_reg.inf)
|
|
add_driver_inf(xboxvmp xboxdisp.inf)
|
|
endif()
|