mirror of
https://github.com/reactos/reactos.git
synced 2024-10-30 11:35:58 +00:00
e293f3d468
- rostests side of r53585 svn path=/trunk/; revision=53586
22 lines
528 B
CMake
22 lines
528 B
CMake
|
|
add_definitions(
|
|
-D__ROS_LONG64__
|
|
-D_DLL -D__USE_CRTIMP)
|
|
|
|
list(APPEND SOURCE
|
|
intshcut.c
|
|
shdocvw.c
|
|
shortcut.c
|
|
webbrowser.c
|
|
testlist.c)
|
|
|
|
add_executable(shdocvw_winetest ${SOURCE})
|
|
target_link_libraries(shdocvw_winetest wine uuid)
|
|
set_module_type(shdocvw_winetest win32cui)
|
|
add_importlibs(shdocvw_winetest gdi32 shell32 ole32 oleaut32 user32 advapi32 msvcrt kernel32 ntdll)
|
|
add_cd_file(TARGET shdocvw_winetest DESTINATION reactos/bin FOR all)
|
|
|
|
if(NOT MSVC)
|
|
allow_warnings(shdocvw_winetest)
|
|
endif()
|