mirror of
https://github.com/reactos/reactos.git
synced 2024-11-04 05:43:30 +00:00
87 lines
2 KiB
CMake
87 lines
2 KiB
CMake
|
|
remove_definitions(-D_WIN32_WINNT=0x502)
|
|
add_definitions(-D_WIN32_WINNT=0x600)
|
|
|
|
add_definitions(
|
|
-D__WINESRC__
|
|
-D_OLE32_
|
|
-DCOM_NO_WINDOWS_H
|
|
-DENTRY_PREFIX=OLE32_
|
|
-DPROXY_CLSID=CLSID_PSFactoryBuffer
|
|
-DWINE_REGISTER_DLL)
|
|
|
|
include_directories(BEFORE ${REACTOS_SOURCE_DIR}/sdk/include/reactos/wine)
|
|
spec2def(ole32.dll ole32.spec ADD_IMPORTLIB NO_PRIVATE_WARNINGS)
|
|
generate_idl_iids(dcom.idl)
|
|
add_idl_headers(ole32idl dcom.idl irot.idl)
|
|
add_rpc_files(client irot.idl)
|
|
|
|
add_rpcproxy_files(
|
|
dcom.idl
|
|
ole32_unknwn.idl
|
|
ole32_objidl.idl
|
|
ole32_oleidl.idl)
|
|
|
|
list(APPEND SOURCE
|
|
antimoniker.c
|
|
bindctx.c
|
|
classmoniker.c
|
|
clipboard.c
|
|
comcat.c
|
|
compobj.c
|
|
compositemoniker.c
|
|
datacache.c
|
|
defaulthandler.c
|
|
dictionary.c
|
|
enumx.c
|
|
errorinfo.c
|
|
filelockbytes.c
|
|
filemoniker.c
|
|
ftmarshal.c
|
|
git.c
|
|
hglobalstream.c
|
|
ifs.c
|
|
itemmoniker.c
|
|
marshal.c
|
|
memlockbytes.c
|
|
moniker.c
|
|
ole2.c
|
|
ole2impl.c
|
|
ole2stubs.c
|
|
ole32_main.c
|
|
oleobj.c
|
|
oleproxy.c
|
|
pointermoniker.c
|
|
rpc.c
|
|
stg_prop.c
|
|
stg_stream.c
|
|
storage32.c
|
|
stubmanager.c
|
|
usrmarshal.c
|
|
precomp.h
|
|
${CMAKE_CURRENT_BINARY_DIR}/dcom_i.c
|
|
${CMAKE_CURRENT_BINARY_DIR}/irot_c.c)
|
|
|
|
if(MSVC AND (ARCH STREQUAL "i386"))
|
|
list(APPEND SOURCE msvc-thiscall.c)
|
|
endif()
|
|
|
|
add_library(ole32 SHARED
|
|
${SOURCE}
|
|
guid.c
|
|
ole32res.rc
|
|
${CMAKE_CURRENT_BINARY_DIR}/dcom_p.c
|
|
${CMAKE_CURRENT_BINARY_DIR}/ole32_objidl_p.c
|
|
${CMAKE_CURRENT_BINARY_DIR}/ole32_oleidl_p.c
|
|
${CMAKE_CURRENT_BINARY_DIR}/ole32_unknwn_p.c
|
|
${CMAKE_CURRENT_BINARY_DIR}/ole32_stubs.c
|
|
${CMAKE_CURRENT_BINARY_DIR}/proxy.dlldata.c
|
|
${CMAKE_CURRENT_BINARY_DIR}/ole32.def)
|
|
|
|
set_module_type(ole32 win32dll)
|
|
target_link_libraries(ole32 wine uuid ${PSEH_LIB})
|
|
add_delay_importlibs(ole32 oleaut32)
|
|
add_importlibs(ole32 advapi32 user32 gdi32 rpcrt4 msvcrt kernel32 kernel32_vista ntdll)
|
|
add_dependencies(ole32 ole32idl)
|
|
add_pch(ole32 precomp.h SOURCE)
|
|
add_cd_file(TARGET ole32 DESTINATION reactos/system32 FOR all)
|