aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/video_core/CMakeLists.txt
blob: 8977c8dcac4972c00619f9be8b7e7114e430a785 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
set(SRCS    command_processor.cpp
            utils.cpp
            video_core.cpp
            renderer_opengl/renderer_opengl.cpp)

set(HEADERS command_processor.h
            math.h
            utils.h
            video_core.h
            renderer_base.h
            video_core.h
            renderer_opengl/renderer_opengl.h)

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