1
2include_directories(
3    ${REACTOS_SOURCE_DIR}/sdk/lib/dmilib)
4
5list(APPEND SOURCE
6    createclose.c
7    hwhacks.c
8    i8042prt.c
9    keyboard.c
10    misc.c
11    mouse.c
12    pnp.c
13    ps2pp.c
14    readwrite.c
15    registry.c
16    i8042prt.h)
17
18add_library(i8042prt MODULE
19    ${SOURCE}
20    guid.c
21    i8042prt.rc)
22
23set_module_type(i8042prt kernelmodedriver)
24target_link_libraries(i8042prt dmilib)
25add_importlibs(i8042prt ntoskrnl hal)
26add_pch(i8042prt i8042prt.h SOURCE)
27add_cd_file(TARGET i8042prt DESTINATION reactos/system32/drivers NO_CAB FOR all)
28add_registry_inf(i8042prt_reg.inf)
29