mirror of
https://github.com/reactos/reactos.git
synced 2024-11-18 13:01:40 +00:00
23373acbb9
There is no need to compile our DLLs as shared libraries since we are managing symbols exports and imports through spec files. On my system, this reduces the configure-time by a factor of two.
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 MODULE ${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)
|