Sync with trunk r58033.
[reactos.git] / drivers / filters / mountmgr / CMakeLists.txt
1
2 list(APPEND SOURCE
3 database.c
4 device.c
5 mountmgr.c
6 notify.c
7 point.c
8 symlink.c
9 uniqueid.c
10 mountmgr.rc)
11
12 add_library(mountmgr SHARED ${SOURCE})
13 target_link_libraries(mountmgr wdmguid ioevent)
14 set_module_type(mountmgr kernelmodedriver)
15 add_importlibs(mountmgr ntoskrnl hal)
16 add_pch(mountmgr mntmgr.h)
17 add_cd_file(TARGET mountmgr DESTINATION reactos/system32/drivers NO_CAB FOR all)
18