summaryrefslogtreecommitdiffstats
path: root/src/video_core/CMakeLists.txt
blob: 70728d2f67a598aaedcde8dec047bc39eb313909 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
add_library(video_core STATIC
    command_processor.cpp
    command_processor.h
    engines/fermi_2d.cpp
    engines/fermi_2d.h
    engines/maxwell_3d.cpp
    engines/maxwell_3d.h
    engines/maxwell_compute.cpp
    engines/maxwell_compute.h
    renderer_base.cpp
    renderer_base.h
    renderer_opengl/gl_resource_manager.h
    renderer_opengl/gl_shader_util.cpp
    renderer_opengl/gl_shader_util.h
    renderer_opengl/gl_state.cpp
    renderer_opengl/gl_state.h
    renderer_opengl/renderer_opengl.cpp
    renderer_opengl/renderer_opengl.h
    utils.h
    video_core.cpp
    video_core.h
)

create_target_directory_groups(video_core)

target_link_libraries(video_core PUBLIC common core)
target_link_libraries(video_core PRIVATE glad)