1
2add_executable(d3dx9_36_winetest
3    asm.c
4    core.c
5    effect.c
6    line.c
7    math.c
8    mesh.c
9    shader.c
10    surface.c
11    texture.c
12    volume.c
13    xfile.c
14    testlist.c
15    rsrc.rc)
16target_compile_definitions(d3dx9_36_winetest PRIVATE -DUSE_WINE_TODOS -D__WINESRC__ -Disnan=_isnan)
17if(MSVC)
18    # Disable warning C4477 (printf format warnings)
19    target_compile_options(d3dx9_36_winetest PRIVATE "/wd4477")
20endif()
21
22target_link_libraries(d3dx9_36_winetest uuid dxguid)
23set_module_type(d3dx9_36_winetest win32cui)
24add_importlibs(d3dx9_36_winetest d3dx9_36 d3d9 user32 gdi32 msvcrt kernel32)
25add_rostests_file(TARGET d3dx9_36_winetest)
26