mirror of
https://github.com/reactos/reactos.git
synced 2024-11-20 06:15:26 +00:00
139e8f5308
- GenCdRom is actually required now to be in CDDB - Forgot to add partmgr registry keys CORE-6264
19 lines
418 B
CMake
19 lines
418 B
CMake
|
|
list(APPEND SOURCE
|
|
partition.c
|
|
partmgr.c
|
|
utils.c)
|
|
|
|
list(APPEND PCH_SKIP_SOURCE
|
|
guid.c)
|
|
|
|
add_library(partmgr MODULE
|
|
${SOURCE}
|
|
${PCH_SKIP_SOURCE}
|
|
partmgr.rc)
|
|
|
|
add_pch(partmgr partmgr.h "${PCH_SKIP_SOURCE}")
|
|
set_module_type(partmgr kernelmodedriver)
|
|
add_importlibs(partmgr ntoskrnl hal)
|
|
add_registry_inf(partmgr_reg.inf)
|
|
add_cd_file(TARGET partmgr DESTINATION reactos/system32/drivers NO_CAB FOR all)
|