mirror of
https://github.com/reactos/reactos.git
synced 2024-11-20 06:15:26 +00:00
16 lines
449 B
CMake
16 lines
449 B
CMake
|
|
spec2def(testvdd.dll testvdd.spec)
|
|
|
|
list(APPEND SOURCE
|
|
testvdd.c
|
|
testvdd.rc
|
|
${CMAKE_CURRENT_BINARY_DIR}/testvdd.def)
|
|
|
|
add_library(testvdd SHARED ${SOURCE})
|
|
#set_module_type(testvdd win32dll UNICODE ENTRYPOINT VDDInitialize)
|
|
set_module_type(testvdd win32dll UNICODE)
|
|
|
|
target_link_libraries(testvdd ${PSEH_LIB})
|
|
|
|
add_importlibs(testvdd ntvdm user32 msvcrt kernel32 ntdll)
|
|
#add_cd_file(TARGET testvdd DESTINATION reactos/system32 FOR all)
|