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