ppsspp/ui/CMakeLists.txt
Henrik Rydgard 16e3d67063 Add UIContext, to make it easier to pass around what's needed to draw.
Not used in PPSSPP yet, for the curious.
2012-11-22 18:40:32 +01:00

16 lines
169 B
CMake

set(SRCS
ui.cpp
ui_context.cpp
screen.cpp
virtual_input.cpp
)
set(SRCS ${SRCS})
add_library(ui STATIC ${SRCS})
if(UNIX)
add_definitions(-fPIC)
endif(UNIX)