summaryrefslogtreecommitdiffstats
path: root/src/video_core/CMakeLists.txt
blob: 7b26fe180ef1e55bbdfd846a177a526e3281a091 (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
28
29
30
31
32
33
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
    gpu.cpp
    gpu.h
    memory_manager.cpp
    memory_manager.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/gl_stream_buffer.cpp
    renderer_opengl/gl_stream_buffer.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)