mirror of
https://github.com/reactos/reactos.git
synced 2025-01-01 12:04:51 +00:00
25 lines
436 B
CMake
25 lines
436 B
CMake
|
|
list(APPEND SOURCE
|
|
circularbuffer.c
|
|
cleanup.c
|
|
close.c
|
|
create.c
|
|
devctrl.c
|
|
info.c
|
|
legacy.c
|
|
misc.c
|
|
pnp.c
|
|
power.c
|
|
rw.c
|
|
serial.c
|
|
serial.h)
|
|
|
|
add_library(serial SHARED
|
|
${SOURCE}
|
|
guid.c
|
|
serial.rc)
|
|
|
|
set_module_type(serial kernelmodedriver)
|
|
add_importlibs(serial ntoskrnl hal)
|
|
add_pch(serial serial.h SOURCE)
|
|
add_cd_file(TARGET serial DESTINATION reactos/system32/drivers FOR all)
|