2010-12-24 12:09:01 +00:00
|
|
|
|
2011-09-04 17:33:34 +00:00
|
|
|
remove_definitions(-DWINVER=0x502 -D_WIN32_IE=0x600 -D_WIN32_WINNT=0x502)
|
|
|
|
|
2012-05-05 16:54:37 +00:00
|
|
|
add_definitions(-D__ROS_LONG64__)
|
2011-08-30 21:26:11 +00:00
|
|
|
|
|
|
|
include_directories(${CMAKE_CURRENT_BINARY_DIR})
|
2011-08-30 20:49:31 +00:00
|
|
|
|
2012-08-01 23:26:54 +00:00
|
|
|
set(IDL_FLAGS ${IDL_FLAGS} --prefix-server=s_)
|
2010-12-24 12:09:01 +00:00
|
|
|
|
2011-08-07 00:54:26 +00:00
|
|
|
add_rpc_files(client server.idl)
|
|
|
|
add_rpc_files(server server.idl)
|
2011-08-30 20:49:31 +00:00
|
|
|
unset(IDL_FLAGS)
|
2010-12-24 12:09:01 +00:00
|
|
|
|
|
|
|
list(APPEND SOURCE
|
|
|
|
cstub.c
|
|
|
|
generated.c
|
|
|
|
ndr_marshall.c
|
|
|
|
rpc.c
|
|
|
|
rpc_async.c
|
|
|
|
rpc_protseq.c
|
|
|
|
server.c
|
2011-08-07 00:54:26 +00:00
|
|
|
testlist.c
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/server_c.c
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/server_s.c)
|
2010-12-24 12:09:01 +00:00
|
|
|
|
2011-09-03 17:35:54 +00:00
|
|
|
if(MSVC)
|
|
|
|
# The nmake generator misses this dependency, so set it explicitly until this bug is fixed.
|
|
|
|
set_source_files_properties(server.c PROPERTIES OBJECT_DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/server_s.h)
|
|
|
|
endif()
|
|
|
|
|
2010-12-24 12:09:01 +00:00
|
|
|
add_executable(rpcrt4_winetest ${SOURCE})
|
|
|
|
target_link_libraries(rpcrt4_winetest
|
|
|
|
uuid
|
|
|
|
wine
|
|
|
|
${PSEH_LIB})
|
|
|
|
|
|
|
|
set_module_type(rpcrt4_winetest win32cui)
|
|
|
|
add_importlibs(rpcrt4_winetest ole32 rpcrt4 msvcrt kernel32 ntdll)
|
2011-05-14 20:55:36 +00:00
|
|
|
add_cd_file(TARGET rpcrt4_winetest DESTINATION reactos/bin FOR all)
|
2011-09-04 17:33:34 +00:00
|
|
|
|
|
|
|
if(NOT MSVC)
|
2011-10-02 22:16:18 +00:00
|
|
|
add_target_compile_flags(rpcrt4_winetest "-Wno-format")
|
2011-09-04 17:33:34 +00:00
|
|
|
endif()
|