summaryrefslogtreecommitdiffstats
path: root/src/video_core/CMakeLists.txt
blob: 2f946e7be3c5d862815f40a061b3e3e5cc2c09f1 (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
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/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)