* Sync up to trunk head (r64716).
[reactos.git] / drivers / serial / serial / CMakeLists.txt
1
2 list(APPEND SOURCE
3 circularbuffer.c
4 cleanup.c
5 close.c
6 create.c
7 devctrl.c
8 info.c
9 legacy.c
10 misc.c
11 pnp.c
12 power.c
13 rw.c
14 serial.c
15 serial.h)
16
17 add_library(serial SHARED
18 ${SOURCE}
19 guid.c
20 serial.rc)
21
22 set_module_type(serial kernelmodedriver)
23 add_importlibs(serial ntoskrnl hal)
24 add_pch(serial serial.h SOURCE)
25 add_cd_file(TARGET serial DESTINATION reactos/system32/drivers FOR all)