mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-23 05:19:56 +00:00
28 lines
662 B
CMake
28 lines
662 B
CMake
|
|
set(LIBRETRO_SRCS
|
|
libretro.cpp
|
|
LibretroGraphicsContext.cpp
|
|
LibretroGLContext.cpp
|
|
LibretroGLCoreContext.cpp
|
|
LibretroVulkanContext.cpp
|
|
libretro_vulkan.cpp)
|
|
|
|
if(WIN32)
|
|
set(LIBRETRO_SRCS ${LIBRETRO_SRCS}
|
|
LibretroD3D11Context.cpp)
|
|
endif()
|
|
|
|
include_directories(libretro)
|
|
|
|
add_library(ppsspp_libretro SHARED ${LIBRETRO_SRCS})
|
|
set(LIBRARY_OUTPUT_PATH "${CMAKE_BINARY_DIR}")
|
|
set_target_properties(ppsspp_libretro PROPERTIES PREFIX "")
|
|
if(ANDROID)
|
|
set_target_properties(ppsspp_libretro PROPERTIES SUFFIX "_android.so")
|
|
endif()
|
|
|
|
if(NOT MSVC)
|
|
target_link_libraries(ppsspp_libretro "-Wl,-Bsymbolic")
|
|
endif()
|
|
target_link_libraries(ppsspp_libretro ${LinkCommon})
|