mirror of
https://github.com/reactos/reactos.git
synced 2024-11-11 01:04:11 +00:00
310a24da6e
It adds basic input support for: - Standard Bus Mouse - Standard InPort Mouse - Logitech Bus Mouse - Microsoft Bus Mouse - Microsoft InPort Mouse - NEC PC-98 Bus Mouse Untested on PC/AT, but should work.
15 lines
331 B
CMake
15 lines
331 B
CMake
|
|
list(APPEND SOURCE
|
|
hardware.c
|
|
inport.c
|
|
inport.h
|
|
ioctl.c
|
|
pnp.c
|
|
wmi.c)
|
|
|
|
add_library(inport MODULE ${SOURCE} inport.rc)
|
|
|
|
set_module_type(inport kernelmodedriver)
|
|
add_pch(inport inport.h SOURCE)
|
|
add_importlibs(inport ntoskrnl hal wmilib)
|
|
add_cd_file(TARGET inport DESTINATION reactos/system32/drivers FOR all)
|