reactos/dll/win32/wbemdisp/CMakeLists.txt
Jérôme Gardou 23373acbb9 [CMAKE] Use modules instead of shared libraries
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.
2019-04-06 17:43:38 +02:00

33 lines
973 B
CMake

add_definitions(-D__WINESRC__)
include_directories(${REACTOS_SOURCE_DIR}/sdk/include/reactos/wine)
spec2def(wbemdisp.dll wbemdisp.spec)
list(APPEND SOURCE
locator.c
main.c
precomp.h)
add_idl_headers(wbemdisp_idlheader wbemdisp_classes.idl)
add_typelib(wbemdisp_tlb.idl)
list(APPEND wbemdisp_rc_deps
${CMAKE_CURRENT_SOURCE_DIR}/wbemdisp_classes.rgs
${CMAKE_CURRENT_SOURCE_DIR}/wbemdisp_tlb.rgs
${CMAKE_CURRENT_BINARY_DIR}/wbemdisp_tlb.tlb)
set_source_files_properties(wbemdisp.rc PROPERTIES OBJECT_DEPENDS "${wbemdisp_rc_deps}")
add_library(wbemdisp MODULE
${SOURCE}
guid.c
wbemdisp.rc
${CMAKE_CURRENT_BINARY_DIR}/wbemdisp.def)
set_module_type(wbemdisp win32dll)
target_link_libraries(wbemdisp uuid wine)
add_dependencies(wbemdisp stdole2 wbemdisp_idlheader)
add_importlibs(wbemdisp oleaut32 ole32 msvcrt kernel32 ntdll)
add_pch(wbemdisp precomp.h SOURCE)
add_cd_file(TARGET wbemdisp DESTINATION reactos/system32/wbem FOR all)