mirror of
https://github.com/reactos/reactos.git
synced 2025-03-10 18:24:02 +00:00

- Move more dlls with no stubs into using def files instead of spec files. svn path=/branches/cmake-bringup/; revision=49450
19 lines
410 B
CMake
19 lines
410 B
CMake
|
|
set_unicode()
|
|
|
|
list(APPEND SOURCE vdmdbg.c vdmdbg.def)
|
|
|
|
if(NOT MSVC)
|
|
set_source_files_properties(vdmdbg.def PROPERTIES EXTERNAL_OBJECT TRUE)
|
|
endif()
|
|
|
|
add_library(vdmdbg SHARED
|
|
${CMAKE_CURRENT_BINARY_DIR}/vdmdbg_vdmdbg.h.gch
|
|
${SOURCE})
|
|
|
|
set_module_type(vdmdbg win32dll)
|
|
|
|
add_importlibs(vdmdbg kernel32 ntdll)
|
|
add_pch(vdmdbg ${CMAKE_CURRENT_SOURCE_DIR}/vdmdbg.h ${SOURCE})
|
|
|
|
add_cab_target(vdmdbg 1)
|