reactos/dll/win32/actxprxy/CMakeLists.txt
Amine Khaldi 67948fbc90 [CMAKE]
- Move some dlls with no stubs into using def files instead of spec files.

svn path=/branches/cmake-bringup/; revision=49448
2010-11-02 18:19:44 +00:00

42 lines
803 B
CMake

add_definitions(-D__WINESRC__)
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
add_library(actxprxy SHARED usrmarshal.c actxprxy.def)
if(NOT MSVC)
set_source_files_properties(actxprxy.def PROPERTIES EXTERNAL_OBJECT TRUE)
endif()
set_entrypoint(actxprxy 0)
target_link_libraries(actxprxy
actxprxy_proxy
uuid
wine
${PSEH_LIB})
add_importlibs(actxprxy
rpcrt4
ole32
oleaut32
kernel32
ntdll)
add_definitions(-DREGISTER_PROXY_DLL -DPROXY_DELEGATION)
rpcproxy(actxprxy
actxprxy_activscp.idl
actxprxy_comcat.idl
actxprxy_docobj.idl
actxprxy_hlink.idl
actxprxy_htiframe.idl
actxprxy_objsafe.idl
actxprxy_ocmm.idl
actxprxy_servprov.idl
actxprxy_shobjidl.idl
actxprxy_urlhist.idl)
add_cab_target(actxprxy 1)