mirror of
https://github.com/libretro/ppsspp.git
synced 2025-02-25 11:20:55 +00:00
19 lines
315 B
CMake
19 lines
315 B
CMake
set(SRCS
|
|
draw_buffer.cpp
|
|
draw_text.cpp
|
|
fbo.cpp
|
|
glsl_program.cpp
|
|
gpu_features.cpp
|
|
gl_state.cpp
|
|
vertex_format.cpp)
|
|
|
|
set(SRCS ${SRCS})
|
|
|
|
add_library(gfx_es2 STATIC ${SRCS})
|
|
target_link_libraries(gfx_es2 general gfx)
|
|
target_link_libraries(gfx_es2 general file)
|
|
|
|
if(UNIX)
|
|
add_definitions(-fPIC)
|
|
endif(UNIX)
|