8528c810cf
I wrote most of this for ppsspp, so I hold full copyright over it. In addition to the original release in ppsspp, this provides functionality to easily extend e.g. two-dimensional vectors to three-dimensional vectors.
11 lines
289 B
CMake
11 lines
289 B
CMake
set(SRCS video_core.cpp
|
|
utils.cpp
|
|
renderer_opengl/renderer_opengl.cpp)
|
|
|
|
set(HEADERS math.h
|
|
utils.h
|
|
video_core.h
|
|
renderer_base.h
|
|
renderer_opengl/renderer_opengl.h)
|
|
|
|
add_library(video_core STATIC ${SRCS} ${HEADERS})
|