citra/src/video_core/CMakeLists.txt

15 lines
380 B
CMake
Raw Normal View History

2014-07-26 14:42:46 +02:00
set(SRCS command_processor.cpp
2014-04-10 05:28:43 +02:00
utils.cpp
2014-07-26 14:42:46 +02:00
video_core.cpp
2014-04-10 05:28:43 +02:00
renderer_opengl/renderer_opengl.cpp)
2014-04-05 22:04:25 +02:00
2014-07-26 14:42:46 +02:00
set(HEADERS command_processor.h
math.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
2014-07-26 14:42:46 +02:00
video_core.h
2014-04-29 04:40:39 +02:00
renderer_opengl/renderer_opengl.h)
add_library(video_core STATIC ${SRCS} ${HEADERS})