citra/src/video_core/CMakeLists.txt

30 lines
919 B
CMake
Raw Normal View History

2014-07-27 17:34:11 +02:00
set(SRCS clipper.cpp
command_processor.cpp
2014-07-27 14:58:30 +02:00
primitive_assembly.cpp
2014-07-27 18:02:35 +02:00
rasterizer.cpp
2014-04-10 05:28:43 +02:00
utils.cpp
vertex_shader.cpp
2014-07-26 14:42:46 +02:00
video_core.cpp
renderer_opengl/generated/gl_3_2_core.c
renderer_opengl/renderer_opengl.cpp
renderer_opengl/gl_shader_util.cpp
debug_utils/debug_utils.cpp)
2014-04-05 22:04:25 +02:00
2014-07-27 17:34:11 +02:00
set(HEADERS clipper.h
command_processor.h
2014-07-26 14:42:46 +02:00
math.h
2014-07-27 14:58:30 +02:00
primitive_assembly.h
2014-07-27 18:02:35 +02:00
rasterizer.h
2014-04-29 04:40:39 +02:00
utils.h
video_core.h
2014-04-29 04:40:39 +02:00
renderer_base.h
vertex_shader.h
2014-07-26 14:42:46 +02:00
video_core.h
renderer_opengl/generated/gl_3_2_core.h
renderer_opengl/renderer_opengl.h
renderer_opengl/gl_shader_util.h
renderer_opengl/gl_shaders.h
debug_utils/debug_utils.h)
2014-04-29 04:40:39 +02:00
add_library(video_core STATIC ${SRCS} ${HEADERS})