citra/src/video_core/CMakeLists.txt

25 lines
682 B
CMake
Raw Normal View History

2014-07-27 21:04:11 +05:30
set(SRCS clipper.cpp
command_processor.cpp
2014-07-27 18:28:30 +05:30
primitive_assembly.cpp
2014-07-27 21:32:35 +05:30
rasterizer.cpp
2014-04-10 08:58:43 +05:30
utils.cpp
vertex_shader.cpp
2014-07-26 18:12:46 +05:30
video_core.cpp
debug_utils/debug_utils.cpp
2014-04-10 08:58:43 +05:30
renderer_opengl/renderer_opengl.cpp)
2014-04-06 01:34:25 +05:30
2014-07-27 21:04:11 +05:30
set(HEADERS clipper.h
command_processor.h
2014-07-26 18:12:46 +05:30
math.h
2014-07-27 18:28:30 +05:30
primitive_assembly.h
2014-07-27 21:32:35 +05:30
rasterizer.h
2014-04-29 08:10:39 +05:30
utils.h
video_core.h
2014-04-29 08:10:39 +05:30
renderer_base.h
vertex_shader.h
2014-07-26 18:12:46 +05:30
video_core.h
debug_utils/debug_utils.h
2014-04-29 08:10:39 +05:30
renderer_opengl/renderer_opengl.h)
add_library(video_core STATIC ${SRCS} ${HEADERS})