1
0
mirror of https://github.com/RPCS3/rpcs3.git synced 2024-11-22 10:42:36 +01:00
rpcs3/3rdparty/discord-rpc/CMakeLists.txt

37 lines
1.2 KiB
CMake
Raw Normal View History

2021-05-04 00:05:11 +02:00
# DiscordRPC
add_library(3rdparty_discordRPC INTERFACE)
2021-05-03 22:10:12 +02:00
2024-01-25 06:16:02 +01:00
check_cxx_compiler_flag("-msse -msse2 -mcx16" COMPILER_X86)
2021-05-03 22:10:12 +02:00
# We don't want Discord Rich Presence on the BSDs and other OSes
if (USE_DISCORD_RPC AND (WIN32 OR CMAKE_SYSTEM MATCHES "Linux" OR APPLE) AND COMPILER_X86)
2021-05-03 22:10:12 +02:00
if (WIN32 AND NOT MSVC)
2021-05-04 00:05:11 +02:00
ExternalProject_Add(discordRPC
2021-05-03 22:10:12 +02:00
GIT_REPOSITORY https://github.com/discordapp/discord-rpc
BINARY_DIR ${CMAKE_CURRENT_BINARY_DIR}
INSTALL_COMMAND ""
)
endif()
2021-05-04 00:05:11 +02:00
target_include_directories(3rdparty_discordRPC INTERFACE include)
target_compile_definitions(3rdparty_discordRPC INTERFACE -DWITH_DISCORD_RPC)
2021-05-03 22:10:12 +02:00
set(DISCORD_RPC_LIB NOTFOUND)
if (WIN32)
if (NOT MSVC)
set(DISCORD_RPC_LIB ${CMAKE_CURRENT_BINARY_DIR}/src/libdiscord-rpc.a)
else()
find_library(DISCORD_RPC_LIB discord-rpc PATHS lib/ NO_DEFAULT_PATH)
endif()
elseif(CMAKE_SYSTEM MATCHES "Linux")
find_library(DISCORD_RPC_LIB discord-rpc-linux PATHS lib/ NO_DEFAULT_PATH)
elseif(APPLE)
find_library(DISCORD_RPC_LIB discord-rpc-mac PATHS lib/ NO_DEFAULT_PATH)
endif()
2021-05-04 00:05:11 +02:00
target_link_libraries(3rdparty_discordRPC INTERFACE ${DISCORD_RPC_LIB})
2021-05-03 22:10:12 +02:00
if(APPLE)
2021-05-04 00:05:11 +02:00
target_link_libraries(3rdparty_discordRPC INTERFACE "objc" "-framework Foundation" "-framework CoreServices")
2021-05-03 22:10:12 +02:00
endif()
endif()