mirror of
https://github.com/reactos/reactos.git
synced 2024-11-04 13:52:30 +00:00
bb2bf33fc8
* Remove duplicate _DLL and __USE_CRTIMP definitions. * Link some modules to uuid/oldnames in msvc build. svn path=/trunk/; revision=52352
18 lines
454 B
CMake
18 lines
454 B
CMake
|
|
add_definitions(-D__ROS_LONG64__)
|
|
|
|
list(APPEND SOURCE
|
|
mimeintl.c
|
|
mimeole.c
|
|
testlist.c)
|
|
|
|
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)
|