mirror of
https://github.com/libretro/ppsspp.git
synced 2025-02-25 11:20:55 +00:00
14 lines
233 B
CMake
14 lines
233 B
CMake
set(SRCS
|
|
input_state.cpp
|
|
gesture_detector.cpp)
|
|
|
|
set(SRCS ${SRCS})
|
|
|
|
add_library(input STATIC ${SRCS})
|
|
target_link_libraries(input general gfx)
|
|
target_link_libraries(input general file)
|
|
|
|
if(UNIX)
|
|
add_definitions(-fPIC)
|
|
endif(UNIX)
|