reactos/dll/opengl/mesa/swrast/CMakeLists.txt
Amine Khaldi 609ba8d717 * Sync up to trunk head (r64829).
svn path=/branches/shell-experiments/; revision=64830
2014-10-19 18:45:40 +00:00

37 lines
626 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(NOT MSVC)
add_target_compile_flags(mesa_swrast "-Wno-unused-variable")
allow_warnings(mesa_swrast)
endif()