mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 04:11:30 +00:00
ba447018c8
Effectively mountmgr.sys is an essential part of the storage stack
18 lines
434 B
CMake
18 lines
434 B
CMake
|
|
list(APPEND SOURCE
|
|
database.c
|
|
device.c
|
|
mountmgr.c
|
|
notify.c
|
|
point.c
|
|
symlink.c
|
|
uniqueid.c
|
|
mntmgr.h)
|
|
|
|
add_library(mountmgr MODULE ${SOURCE} mountmgr.rc)
|
|
target_link_libraries(mountmgr wdmguid ioevent memcmp)
|
|
set_module_type(mountmgr kernelmodedriver)
|
|
add_importlibs(mountmgr ntoskrnl hal)
|
|
add_pch(mountmgr mntmgr.h SOURCE)
|
|
add_cd_file(TARGET mountmgr DESTINATION reactos/system32/drivers NO_CAB FOR all)
|