2011-05-16 13:12:07 +00:00
|
|
|
|
|
|
|
add_definitions(-D__WINESRC__)
|
|
|
|
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
|
|
|
|
|
2013-04-20 21:18:05 +00:00
|
|
|
add_definitions(-DWINE_REGISTER_DLL -DPROXY_DELEGATION)
|
|
|
|
|
2011-05-16 13:12:07 +00:00
|
|
|
spec2def(actxprxy.dll actxprxy.spec)
|
|
|
|
|
|
|
|
add_rpcproxy_files(
|
|
|
|
actxprxy_activscp.idl
|
|
|
|
actxprxy_comcat.idl
|
|
|
|
actxprxy_docobj.idl
|
|
|
|
actxprxy_hlink.idl
|
2013-04-20 21:18:05 +00:00
|
|
|
actxprxy_htiface.idl
|
2011-05-16 13:12:07 +00:00
|
|
|
actxprxy_htiframe.idl
|
|
|
|
actxprxy_objsafe.idl
|
|
|
|
actxprxy_ocmm.idl
|
|
|
|
actxprxy_servprov.idl
|
2011-09-23 23:12:53 +00:00
|
|
|
actxprxy_shldisp.idl
|
2011-05-16 13:12:07 +00:00
|
|
|
actxprxy_shobjidl.idl
|
|
|
|
actxprxy_urlhist.idl)
|
|
|
|
|
|
|
|
list(APPEND SOURCE
|
|
|
|
usrmarshal.c
|
2013-04-20 21:18:05 +00:00
|
|
|
actxprxy.rc
|
2011-05-16 13:12:07 +00:00
|
|
|
${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
|
2013-04-20 21:18:05 +00:00
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/actxprxy_htiface_p.c
|
2011-05-16 13:12:07 +00:00
|
|
|
${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
|
2011-09-23 23:12:53 +00:00
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/actxprxy_shldisp_p.c
|
2011-05-16 13:12:07 +00:00
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/actxprxy_shobjidl_p.c
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/actxprxy_urlhist_p.c
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/proxy.dlldata.c
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/actxprxy.def)
|
|
|
|
|
|
|
|
add_library(actxprxy SHARED ${SOURCE})
|
2011-09-04 15:19:10 +00:00
|
|
|
set_module_type(actxprxy win32dll)
|
2013-04-20 21:18:05 +00:00
|
|
|
target_link_libraries(actxprxy uuid wine ${PSEH_LIB})
|
|
|
|
add_importlibs(actxprxy rpcrt4 ole32 oleaut32 msvcrt kernel32 ntdll)
|
2011-05-16 13:12:07 +00:00
|
|
|
add_cd_file(TARGET actxprxy DESTINATION reactos/system32 FOR all)
|