* Sync up to trunk head (r64921).
[reactos.git] / dll / win32 / actxprxy / CMakeLists.txt
1
2 add_definitions(-D__WINESRC__)
3 include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
4 add_definitions(-DWINE_REGISTER_DLL -DPROXY_DELEGATION)
5 spec2def(actxprxy.dll actxprxy.spec)
6
7 add_rpcproxy_files(
8 actxprxy_activscp.idl
9 actxprxy_comcat.idl
10 actxprxy_docobj.idl
11 actxprxy_hlink.idl
12 actxprxy_htiface.idl
13 actxprxy_htiframe.idl
14 actxprxy_objsafe.idl
15 actxprxy_ocmm.idl
16 actxprxy_servprov.idl
17 actxprxy_shldisp.idl
18 actxprxy_shobjidl.idl
19 actxprxy_urlhist.idl)
20
21 list(APPEND SOURCE
22 usrmarshal.c
23 actxprxy.rc
24 ${CMAKE_CURRENT_BINARY_DIR}/actxprxy_activscp_p.c
25 ${CMAKE_CURRENT_BINARY_DIR}/actxprxy_comcat_p.c
26 ${CMAKE_CURRENT_BINARY_DIR}/actxprxy_docobj_p.c
27 ${CMAKE_CURRENT_BINARY_DIR}/actxprxy_hlink_p.c
28 ${CMAKE_CURRENT_BINARY_DIR}/actxprxy_htiface_p.c
29 ${CMAKE_CURRENT_BINARY_DIR}/actxprxy_htiframe_p.c
30 ${CMAKE_CURRENT_BINARY_DIR}/actxprxy_objsafe_p.c
31 ${CMAKE_CURRENT_BINARY_DIR}/actxprxy_ocmm_p.c
32 ${CMAKE_CURRENT_BINARY_DIR}/actxprxy_servprov_p.c
33 ${CMAKE_CURRENT_BINARY_DIR}/actxprxy_shldisp_p.c
34 ${CMAKE_CURRENT_BINARY_DIR}/actxprxy_shobjidl_p.c
35 ${CMAKE_CURRENT_BINARY_DIR}/actxprxy_urlhist_p.c
36 ${CMAKE_CURRENT_BINARY_DIR}/proxy.dlldata.c
37 ${CMAKE_CURRENT_BINARY_DIR}/actxprxy.def)
38
39 add_library(actxprxy SHARED ${SOURCE})
40 set_module_type(actxprxy win32dll)
41 target_link_libraries(actxprxy uuid wine ${PSEH_LIB})
42 add_importlibs(actxprxy rpcrt4 ole32 oleaut32 msvcrt kernel32 ntdll)
43 add_cd_file(TARGET actxprxy DESTINATION reactos/system32 FOR all)