mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 04:11:30 +00:00
8600a00fe4
CORE-17819 This allows VPC2004/2007 to boot LiveCD SAFEMODE to desktop,
the regular mode booted also without that addition already.
Fix picked from 0.4.15-dev-1537-g b1c460d34e
29 lines
582 B
CMake
29 lines
582 B
CMake
|
|
include_directories(
|
|
${REACTOS_SOURCE_DIR}/sdk/lib/dmilib)
|
|
|
|
list(APPEND SOURCE
|
|
createclose.c
|
|
hwhacks.c
|
|
i8042prt.c
|
|
keyboard.c
|
|
misc.c
|
|
mouse.c
|
|
pnp.c
|
|
ps2pp.c
|
|
readwrite.c
|
|
registry.c
|
|
i8042prt.h)
|
|
|
|
add_library(i8042prt MODULE
|
|
${SOURCE}
|
|
guid.c
|
|
i8042prt.rc)
|
|
|
|
set_module_type(i8042prt kernelmodedriver)
|
|
target_link_libraries(i8042prt dmilib)
|
|
add_importlibs(i8042prt ntoskrnl hal)
|
|
add_pch(i8042prt i8042prt.h SOURCE)
|
|
add_cd_file(TARGET i8042prt DESTINATION reactos/system32/drivers NO_CAB FOR all)
|
|
add_registry_inf(i8042prt_reg.inf)
|