2014-08-24 01:22:05 +00:00
|
|
|
set(SRCS
|
|
|
|
renderer_opengl/generated/gl_3_2_core.c
|
|
|
|
renderer_opengl/renderer_opengl.cpp
|
|
|
|
renderer_opengl/gl_shader_util.cpp
|
|
|
|
debug_utils/debug_utils.cpp
|
|
|
|
clipper.cpp
|
2014-07-27 15:34:11 +00:00
|
|
|
command_processor.cpp
|
2014-07-27 12:58:30 +00:00
|
|
|
primitive_assembly.cpp
|
2014-07-27 16:02:35 +00:00
|
|
|
rasterizer.cpp
|
2014-04-10 03:28:43 +00:00
|
|
|
utils.cpp
|
2014-07-26 17:17:09 +00:00
|
|
|
vertex_shader.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
|
|
|
|
debug_utils/debug_utils.h
|
|
|
|
renderer_opengl/generated/gl_3_2_core.h
|
|
|
|
renderer_opengl/gl_shader_util.h
|
|
|
|
renderer_opengl/gl_shaders.h
|
|
|
|
renderer_opengl/renderer_opengl.h
|
|
|
|
clipper.h
|
2014-07-27 15:34:11 +00:00
|
|
|
command_processor.h
|
2014-08-24 01:22:05 +00:00
|
|
|
gpu_debugger.h
|
2014-07-26 12:42:46 +00:00
|
|
|
math.h
|
2014-08-24 01:22:05 +00:00
|
|
|
pica.h
|
2014-07-27 12:58:30 +00:00
|
|
|
primitive_assembly.h
|
2014-07-27 16:02:35 +00:00
|
|
|
rasterizer.h
|
2014-04-29 02:40:39 +00:00
|
|
|
renderer_base.h
|
2014-08-24 01:22:05 +00:00
|
|
|
utils.h
|
2014-07-26 17:17:09 +00:00
|
|
|
vertex_shader.h
|
2014-07-26 12:42:46 +00:00
|
|
|
video_core.h
|
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})
|
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()
|