mirror of
https://github.com/reactos/reactos
synced 2025-10-05 16:02:58 +02:00
- Move sdk\include\reactos\wine to sdk\include\wine - Reorder the directories in include_directories() to be closer to alphabetical. This should make it easier to determine what global include directories can be removed in the future.
47 lines
1.5 KiB
CMake
47 lines
1.5 KiB
CMake
|
|
add_definitions(-D__WINESRC__)
|
|
add_definitions(-DWINE_REGISTER_DLL -DPROXY_DELEGATION)
|
|
spec2def(actxprxy.dll actxprxy.spec)
|
|
|
|
add_rpcproxy_files(
|
|
actxprxy_activscp.idl
|
|
actxprxy_comcat.idl
|
|
actxprxy_docobj.idl
|
|
actxprxy_hlink.idl
|
|
actxprxy_htiface.idl
|
|
actxprxy_htiframe.idl
|
|
actxprxy_objsafe.idl
|
|
actxprxy_ocmm.idl
|
|
actxprxy_servprov.idl
|
|
actxprxy_shldisp.idl
|
|
actxprxy_shobjidl.idl
|
|
actxprxy_urlhist.idl)
|
|
|
|
list(APPEND SOURCE
|
|
usrmarshal.c
|
|
${CMAKE_CURRENT_BINARY_DIR}/actxprxy_activscp_p.c
|
|
${CMAKE_CURRENT_BINARY_DIR}/actxprxy_comcat_p.c
|
|
${CMAKE_CURRENT_BINARY_DIR}/actxprxy_docobj_p.c
|
|
${CMAKE_CURRENT_BINARY_DIR}/actxprxy_hlink_p.c
|
|
${CMAKE_CURRENT_BINARY_DIR}/actxprxy_htiface_p.c
|
|
${CMAKE_CURRENT_BINARY_DIR}/actxprxy_htiframe_p.c
|
|
${CMAKE_CURRENT_BINARY_DIR}/actxprxy_objsafe_p.c
|
|
${CMAKE_CURRENT_BINARY_DIR}/actxprxy_ocmm_p.c
|
|
${CMAKE_CURRENT_BINARY_DIR}/actxprxy_servprov_p.c
|
|
${CMAKE_CURRENT_BINARY_DIR}/actxprxy_shldisp_p.c
|
|
${CMAKE_CURRENT_BINARY_DIR}/actxprxy_shobjidl_p.c
|
|
${CMAKE_CURRENT_BINARY_DIR}/actxprxy_urlhist_p.c
|
|
${CMAKE_CURRENT_BINARY_DIR}/proxy.dlldata.c
|
|
precomp.h)
|
|
|
|
add_library(actxprxy MODULE
|
|
${SOURCE}
|
|
actxprxy.rc
|
|
${CMAKE_CURRENT_BINARY_DIR}/actxprxy.def)
|
|
|
|
set_module_type(actxprxy win32dll)
|
|
target_link_libraries(actxprxy uuid wine ${PSEH_LIB})
|
|
add_importlibs(actxprxy rpcrt4 ole32 oleaut32 msvcrt kernel32 ntdll)
|
|
add_pch(actxprxy precomp.h SOURCE)
|
|
add_cd_file(TARGET actxprxy DESTINATION reactos/system32 FOR all)
|