Pica: Add command processor.

This commit is contained in:
Tony Wasserka
2014-07-26 14:42:46 +02:00
parent 98ad16a45b
commit 76a586de49
9 changed files with 113 additions and 9 deletions

View File

@ -1,11 +1,14 @@
set(SRCS video_core.cpp
set(SRCS command_processor.cpp
utils.cpp
video_core.cpp
renderer_opengl/renderer_opengl.cpp)
set(HEADERS math.h
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})