reactos/modules/rostests/winetests/fusion/CMakeLists.txt
Serge Gautherie aae5cd8ea2
[CMAKE] Remove obsolete 'GCC_VERSION' checks (#2962)
following upgrade to RosBE 2.2.0 support and GCC 8.4.
2020-07-04 15:33:50 +02:00

19 lines
372 B
CMake

add_definitions(-DUSE_WINE_TODOS)
if(GCC)
add_compile_flags("-Wno-format-overflow")
endif()
list(APPEND SOURCE
asmcache.c
asmenum.c
asmname.c
fusion.c
testlist.c)
add_executable(fusion_winetest ${SOURCE})
set_module_type(fusion_winetest win32cui)
add_importlibs(fusion_winetest user32 msvcrt kernel32)
add_rostests_file(TARGET fusion_winetest)