reactos/modules/rostests/winetests/fusion/CMakeLists.txt
Jérôme Gardou 00ed72d7e8 [CMAKE] Get rid of add_compile_flags
Use add_compile_options and the like instead
2020-10-20 21:44:54 +02:00

20 lines
439 B
CMake

list(APPEND SOURCE
asmcache.c
asmenum.c
asmname.c
fusion.c
testlist.c)
add_executable(fusion_winetest ${SOURCE})
target_compile_definitions(fusion_winetest PRIVATE USE_WINE_TODOS)
if (NOT MSVC)
target_compile_options(fusion_winetest PRIVATE -Wno-format-overflow)
endif()
set_module_type(fusion_winetest win32cui)
add_importlibs(fusion_winetest user32 msvcrt kernel32)
add_rostests_file(TARGET fusion_winetest)