mirror of
https://github.com/reactos/reactos.git
synced 2024-11-18 21:13:52 +00:00
11 lines
360 B
CMake
11 lines
360 B
CMake
|
|
if(MSVC)
|
|
# Disable warning C4477 (printf format warnings)
|
|
add_compile_flags("/wd4477")
|
|
endif()
|
|
|
|
add_executable(oleacc_winetest main.c testlist.c)
|
|
set_module_type(oleacc_winetest win32cui)
|
|
target_link_libraries(oleacc_winetest uuid)
|
|
add_importlibs(oleacc_winetest oleacc oleaut32 ole32 user32 msvcrt kernel32)
|
|
add_rostests_file(TARGET oleacc_winetest)
|