yuzu-mainline/src/video_core/CMakeLists.txt

19 lines
506 B
CMake
Raw Normal View History

2014-07-26 05:42:46 -07:00
set(SRCS command_processor.cpp
2014-07-27 05:58:30 -07:00
primitive_assembly.cpp
2014-04-09 20:28:43 -07:00
utils.cpp
vertex_shader.cpp
2014-07-26 05:42:46 -07:00
video_core.cpp
2014-04-09 20:28:43 -07:00
renderer_opengl/renderer_opengl.cpp)
2014-04-05 13:04:25 -07:00
2014-07-26 05:42:46 -07:00
set(HEADERS command_processor.h
math.h
2014-07-27 05:58:30 -07:00
primitive_assembly.h
2014-04-28 19:40:39 -07:00
utils.h
video_core.h
2014-04-28 19:40:39 -07:00
renderer_base.h
vertex_shader.h
2014-07-26 05:42:46 -07:00
video_core.h
2014-04-28 19:40:39 -07:00
renderer_opengl/renderer_opengl.h)
add_library(video_core STATIC ${SRCS} ${HEADERS})