2014-08-23 21:22:05 -04:00
|
|
|
set(SRCS
|
2015-05-19 00:21:33 -04:00
|
|
|
renderer_opengl/gl_rasterizer.cpp
|
|
|
|
renderer_opengl/gl_rasterizer_cache.cpp
|
2015-10-05 22:33:47 -04:00
|
|
|
renderer_opengl/gl_shader_gen.cpp
|
2014-08-23 21:22:05 -04:00
|
|
|
renderer_opengl/gl_shader_util.cpp
|
2015-05-19 00:21:33 -04:00
|
|
|
renderer_opengl/gl_state.cpp
|
|
|
|
renderer_opengl/renderer_opengl.cpp
|
2014-08-23 21:22:05 -04:00
|
|
|
debug_utils/debug_utils.cpp
|
|
|
|
clipper.cpp
|
2014-07-27 11:34:11 -04:00
|
|
|
command_processor.cpp
|
2015-05-13 23:29:27 -04:00
|
|
|
pica.cpp
|
2014-07-27 08:58:30 -04:00
|
|
|
primitive_assembly.cpp
|
2014-07-27 12:02:35 -04:00
|
|
|
rasterizer.cpp
|
2015-12-06 22:06:12 -05:00
|
|
|
renderer_base.cpp
|
2015-07-21 19:38:59 -04:00
|
|
|
shader/shader.cpp
|
2015-07-21 19:09:11 -04:00
|
|
|
shader/shader_interpreter.cpp
|
2015-12-06 22:06:12 -05:00
|
|
|
swrasterizer.cpp
|
2014-04-09 23:28:43 -04:00
|
|
|
utils.cpp
|
2014-07-26 08:42:46 -04:00
|
|
|
video_core.cpp
|
2014-08-23 21:22:05 -04:00
|
|
|
)
|
2014-04-05 16:04:25 -04:00
|
|
|
|
2014-08-23 21:22:05 -04:00
|
|
|
set(HEADERS
|
|
|
|
debug_utils/debug_utils.h
|
2015-05-19 00:21:33 -04:00
|
|
|
renderer_opengl/gl_rasterizer.h
|
|
|
|
renderer_opengl/gl_rasterizer_cache.h
|
|
|
|
renderer_opengl/gl_resource_manager.h
|
2015-10-05 22:33:47 -04:00
|
|
|
renderer_opengl/gl_shader_gen.h
|
2014-08-23 21:22:05 -04:00
|
|
|
renderer_opengl/gl_shader_util.h
|
2015-05-19 00:21:33 -04:00
|
|
|
renderer_opengl/gl_state.h
|
|
|
|
renderer_opengl/pica_to_gl.h
|
2014-08-23 21:22:05 -04:00
|
|
|
renderer_opengl/renderer_opengl.h
|
|
|
|
clipper.h
|
2014-07-27 11:34:11 -04:00
|
|
|
command_processor.h
|
2014-08-23 21:22:05 -04:00
|
|
|
gpu_debugger.h
|
|
|
|
pica.h
|
2016-03-02 22:16:38 -05:00
|
|
|
pica_state.h
|
2015-09-09 18:30:03 -04:00
|
|
|
pica_types.h
|
2014-07-27 08:58:30 -04:00
|
|
|
primitive_assembly.h
|
2014-07-27 12:02:35 -04:00
|
|
|
rasterizer.h
|
2015-12-06 22:06:12 -05:00
|
|
|
rasterizer_interface.h
|
2014-04-28 22:40:39 -04:00
|
|
|
renderer_base.h
|
2015-07-21 19:38:59 -04:00
|
|
|
shader/shader.h
|
2015-07-21 19:09:11 -04:00
|
|
|
shader/shader_interpreter.h
|
2015-12-06 22:06:12 -05:00
|
|
|
swrasterizer.h
|
2014-08-23 21:22:05 -04:00
|
|
|
utils.h
|
2014-07-26 08:42:46 -04:00
|
|
|
video_core.h
|
2014-08-23 21:22:05 -04:00
|
|
|
)
|
|
|
|
|
2015-08-14 22:29:08 -04:00
|
|
|
if(ARCHITECTURE_x86_64)
|
2015-07-22 23:25:30 -04:00
|
|
|
set(SRCS ${SRCS}
|
|
|
|
shader/shader_jit_x64.cpp)
|
2015-08-12 00:00:44 -04:00
|
|
|
|
|
|
|
set(HEADERS ${HEADERS}
|
|
|
|
shader/shader_jit_x64.h)
|
2015-07-22 23:25:30 -04:00
|
|
|
endif()
|
|
|
|
|
2014-08-23 21:22:05 -04:00
|
|
|
create_directory_groups(${SRCS} ${HEADERS})
|
2014-04-28 22:40:39 -04:00
|
|
|
|
2014-05-19 18:19:36 -04:00
|
|
|
add_library(video_core STATIC ${SRCS} ${HEADERS})
|
2015-08-30 02:37:42 -04:00
|
|
|
target_link_libraries(video_core glad)
|
2014-08-23 21:22:05 -04:00
|
|
|
|
|
|
|
if (PNG_FOUND)
|
|
|
|
target_link_libraries(video_core ${PNG_LIBRARIES})
|
|
|
|
include_directories(${PNG_INCLUDE_DIRS})
|
|
|
|
add_definitions(${PNG_DEFINITIONS})
|
|
|
|
endif()
|