2014-08-24 01:22:05 +00:00
|
|
|
set(SRCS
|
2015-12-07 03:06:12 +00:00
|
|
|
renderer_base.cpp
|
2017-01-05 22:11:23 +00:00
|
|
|
renderer_opengl/gl_shader_util.cpp
|
|
|
|
renderer_opengl/gl_state.cpp
|
|
|
|
renderer_opengl/renderer_opengl.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
|
2014-04-29 02:40:39 +00:00
|
|
|
renderer_base.h
|
2017-01-05 22:11:23 +00:00
|
|
|
renderer_opengl/gl_resource_manager.h
|
|
|
|
renderer_opengl/gl_shader_util.h
|
|
|
|
renderer_opengl/gl_state.h
|
|
|
|
renderer_opengl/renderer_opengl.h
|
2014-08-24 01:22:05 +00:00
|
|
|
utils.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})
|
2017-05-28 01:26:55 +00:00
|
|
|
target_link_libraries(video_core PUBLIC common core)
|
2018-01-12 03:07:44 +00:00
|
|
|
target_link_libraries(video_core PRIVATE glad)
|