mirror of
https://github.com/reactos/reactos.git
synced 2025-08-11 13:15:39 +00:00
37 lines
638 B
CMake
37 lines
638 B
CMake
|
|
list(APPEND SOURCE
|
|
s_aaline.c
|
|
s_aatriangle.c
|
|
s_alpha.c
|
|
s_bitmap.c
|
|
s_blend.c
|
|
s_clear.c
|
|
s_context.c
|
|
s_copypix.c
|
|
s_depth.c
|
|
s_drawpix.c
|
|
s_feedback.c
|
|
s_fog.c
|
|
s_lines.c
|
|
s_logic.c
|
|
s_masking.c
|
|
s_points.c
|
|
s_renderbuffer.c
|
|
s_span.c
|
|
s_stencil.c
|
|
s_texcombine.c
|
|
s_texfetch.c
|
|
s_texfilter.c
|
|
s_texture.c
|
|
s_triangle.c
|
|
s_zoom.c
|
|
precomp.h)
|
|
|
|
add_library(mesa_swrast STATIC ${SOURCE})
|
|
add_pch(mesa_swrast precomp.h SOURCE)
|
|
|
|
if(MSVC)
|
|
replace_compile_flags("/we4189" " ")
|
|
else()
|
|
add_target_compile_flags(mesa_swrast "-Wno-unused-variable")
|
|
endif()
|