1
2spec2def(testvdd.dll testvdd.spec)
3
4list(APPEND SOURCE
5    testvdd.c
6    testvdd.rc
7    ${CMAKE_CURRENT_BINARY_DIR}/testvdd.def)
8
9add_library(testvdd MODULE ${SOURCE})
10#set_module_type(testvdd win32dll UNICODE ENTRYPOINT VDDInitialize)
11set_module_type(testvdd win32dll UNICODE)
12
13target_link_libraries(testvdd ${PSEH_LIB})
14
15add_importlibs(testvdd ntvdm user32 msvcrt kernel32 ntdll)
16#add_cd_file(TARGET testvdd DESTINATION reactos/system32 FOR all)
17