aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/video_core/CMakeLists.txt
blob: 8e7b93acb48c95758021307fe74d564c59b44dd9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
set(SRCS    clipper.cpp
            command_processor.cpp
            primitive_assembly.cpp
            rasterizer.cpp
            utils.cpp
            vertex_shader.cpp
            video_core.cpp
            renderer_opengl/renderer_opengl.cpp)

set(HEADERS clipper.h
            command_processor.h
            math.h
            primitive_assembly.h
            rasterizer.h
            utils.h
            video_core.h
            renderer_base.h
            vertex_shader.h
            video_core.h
            renderer_opengl/renderer_opengl.h)

add_library(video_core STATIC ${SRCS} ${HEADERS})