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