mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-26 19:33:31 +00:00
Re-trial of #7800. Deleting __WINESRC__ hacks. JIRA issue: CORE-5743 - Add sdk/cmake/set_wine_module.cmake. - Load set_wine_module.cmake at top-level CMakeLists.txt. - Use set_wine_module cmake function and delete __WINESRC__ as possible. - Delete many include_directories.
32 lines
785 B
CMake
32 lines
785 B
CMake
|
|
add_definitions(
|
|
-DCOM_NO_WINDOWS_H)
|
|
|
|
spec2def(wuapi.dll wuapi.spec)
|
|
|
|
list(APPEND SOURCE
|
|
downloader.c
|
|
installer.c
|
|
main.c
|
|
searcher.c
|
|
session.c
|
|
systeminfo.c
|
|
updates.c
|
|
precomp.h)
|
|
|
|
add_typelib(wuapi_tlb.idl)
|
|
set_source_files_properties(wuapi.rc PROPERTIES OBJECT_DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/wuapi_tlb.tlb)
|
|
|
|
add_library(wuapi MODULE
|
|
${SOURCE}
|
|
wuapi.rc
|
|
${CMAKE_CURRENT_BINARY_DIR}/wuapi.def)
|
|
|
|
set_module_type(wuapi win32dll)
|
|
target_link_libraries(wuapi uuid wine wuguid)
|
|
add_importlibs(wuapi msvcrt kernel32 ntdll)
|
|
add_dependencies(wuapi stdole2) # wuapi_tlb.tlb needs stdole2.tlb
|
|
add_pch(wuapi precomp.h SOURCE)
|
|
add_cd_file(TARGET wuapi DESTINATION reactos/system32 FOR all)
|
|
set_wine_module_FIXME(wuapi) # CORE-5743: No CONST_VTABLE
|