* Addendum to r57019.

svn path=/trunk/; revision=57020
This commit is contained in:
Amine Khaldi 2012-08-01 23:26:54 +00:00
parent c3be8a39d4
commit 32f949ce32
8 changed files with 2 additions and 45 deletions

View file

@ -33,9 +33,7 @@ add_executable(comctl32_winetest
target_link_libraries(comctl32_winetest wine)
if(MSVC)
target_link_libraries(comctl32_winetest uuid)
else()
if(NOT MSVC)
# FIXME: http://www.cmake.org/Bug/view.php?id=12998
#add_target_compile_flags(comctl32_winetest "-Wno-format")
set_source_files_properties(${SOURCE} PROPERTIES COMPILE_FLAGS "-Wno-format")

View file

@ -8,11 +8,6 @@ list(APPEND SOURCE
add_executable(inetcomm_winetest ${SOURCE})
target_link_libraries(inetcomm_winetest wine)
if(MSVC)
target_link_libraries(inetcomm_winetest uuid)
endif()
set_module_type(inetcomm_winetest win32cui)
add_importlibs(inetcomm_winetest inetcomm oleaut32 ole32 msvcrt kernel32 ntdll)
add_cd_file(TARGET inetcomm_winetest DESTINATION reactos/bin FOR all)

View file

@ -1,15 +1,7 @@
add_definitions(-D__ROS_LONG64__)
set_rc_compiler()
add_executable(itss_winetest protocol.c testlist.c rsrc.rc)
target_link_libraries(itss_winetest wine)
if(MSVC)
target_link_libraries(itss_winetest uuid)
endif()
set_module_type(itss_winetest win32cui)
add_importlibs(itss_winetest ole32 msvcrt kernel32 ntdll)
add_cd_file(TARGET itss_winetest DESTINATION reactos/bin FOR all)

View file

@ -1,8 +1,5 @@
add_definitions(-D__ROS_LONG64__)
set_rc_compiler()
list(APPEND SOURCE
activex.c
jscript.c
@ -12,11 +9,6 @@ list(APPEND SOURCE
add_executable(jscript_winetest ${SOURCE})
target_link_libraries(jscript_winetest wine)
if(MSVC)
target_link_libraries(jscript_winetest uuid)
endif()
set_module_type(jscript_winetest win32cui)
add_importlibs(jscript_winetest ole32 oleaut32 advapi32 msvcrt kernel32 ntdll)
add_cd_file(TARGET jscript_winetest DESTINATION reactos/bin FOR all)

View file

@ -1,13 +1,7 @@
add_definitions(-D__ROS_LONG64__)
add_executable(msctf_winetest inputprocessor.c testlist.c)
target_link_libraries(msctf_winetest wine)
if(MSVC)
target_link_libraries(msctf_winetest uuid)
endif()
set_module_type(msctf_winetest win32cui)
add_importlibs(msctf_winetest ole32 user32 msvcrt kernel32 ntdll)
add_cd_file(TARGET msctf_winetest DESTINATION reactos/bin FOR all)

View file

@ -9,11 +9,6 @@ list(APPEND SOURCE
add_executable(mstask_winetest ${SOURCE})
target_link_libraries(mstask_winetest wine)
if(MSVC)
target_link_libraries(mstask_winetest uuid)
endif()
set_module_type(mstask_winetest win32cui)
add_importlibs(mstask_winetest ole32 msvcrt kernel32 ntdll)
add_cd_file(TARGET mstask_winetest DESTINATION reactos/bin FOR all)

View file

@ -11,11 +11,6 @@ list(APPEND SOURCE
add_executable(qmgr_winetest ${SOURCE})
target_link_libraries(qmgr_winetest wine)
if(MSVC)
target_link_libraries(qmgr_winetest uuid)
endif()
set_module_type(qmgr_winetest win32cui)
add_importlibs(qmgr_winetest ole32 shlwapi user32 msvcrt kernel32 ntdll)
add_cd_file(TARGET qmgr_winetest DESTINATION reactos/bin FOR all)

View file

@ -5,11 +5,7 @@ add_definitions(-D__ROS_LONG64__)
include_directories(${CMAKE_CURRENT_BINARY_DIR})
if(MSVC)
set(IDL_FLAGS ${IDL_FLAGS} /prefix server s_ /app_config)
else()
set(IDL_FLAGS ${IDL_FLAGS} --prefix-server=s_)
endif()
set(IDL_FLAGS ${IDL_FLAGS} --prefix-server=s_)
add_rpc_files(client server.idl)
add_rpc_files(server server.idl)