mirror of
https://github.com/reactos/reactos.git
synced 2025-02-23 08:55:19 +00:00
14 lines
326 B
CMake
14 lines
326 B
CMake
|
|
|
|
spec2def(vdmdbg.dll vdmdbg.spec)
|
|
|
|
list(APPEND SOURCE
|
|
vdmdbg.c
|
|
${CMAKE_CURRENT_BINARY_DIR}/vdmdbg.def)
|
|
|
|
add_library(vdmdbg SHARED ${SOURCE})
|
|
|
|
set_module_type(vdmdbg win32dll UNICODE)
|
|
add_importlibs(vdmdbg msvcrt kernel32 ntdll)
|
|
add_pch(vdmdbg vdmdbg.h)
|
|
add_cd_file(TARGET vdmdbg DESTINATION reactos/system32 FOR all)
|