mirror of
https://github.com/libretro/ppsspp.git
synced 2024-11-24 16:49:50 +00:00
772f9cc585
Fixes (but not perfectly) games that make simple use of splines like LocoRoco. (The locos are a little jagged)
35 lines
667 B
CMake
35 lines
667 B
CMake
set(SRCS
|
|
GPUCommon.cpp
|
|
GPUState.cpp
|
|
Math3D.cpp
|
|
GLES/GLES_GPU.cpp
|
|
GLES/FragmentShaderGenerator.cpp
|
|
GLES/Framebuffer.cpp
|
|
GLES/IndexGenerator.cpp
|
|
GLES/ShaderManager.cpp
|
|
GLES/Spline.cpp
|
|
GLES/StateMapping.cpp
|
|
GLES/TextureCache.cpp
|
|
GLES/TextureScaler.cpp
|
|
GLES/TransformPipeline.cpp
|
|
GLES/VertexDecoder.cpp
|
|
GLES/VertexShaderGenerator.cpp
|
|
Null/NullGpu.cpp
|
|
Software/Clipper.cpp
|
|
Software/Lighting.cpp
|
|
Software/Rasterizer.cpp
|
|
Software/SoftGpu.cpp
|
|
Software/TransformUnit.cpp
|
|
)
|
|
|
|
set(SRCS ${SRCS})
|
|
|
|
add_library(gpu STATIC ${SRCS})
|
|
target_link_libraries(gpu general gfx_es2)
|
|
target_link_libraries(gpu general lin)
|
|
|
|
if(UNIX)
|
|
add_definitions(-fPIC)
|
|
endif(UNIX)
|
|
|