Renamed rich presence module

This commit is contained in:
Starman0620
2021-04-20 14:34:54 -04:00
parent f23faa72ec
commit 18eb29fabd
3 changed files with 8 additions and 10 deletions

View File

@@ -0,0 +1,21 @@
cmake_minimum_required(VERSION 3.13)
project(discord-integration)
if (MSVC)
set(CMAKE_CXX_FLAGS "-O2 /std:c++17 /EHsc")
elseif (CMAKE_CXX_COMPILER_ID MATCHES "Clang")
set(CMAKE_CXX_FLAGS "-O3 -std=c++17 -Wno-unused-command-line-argument -undefined dynamic_lookup -fPIC")
else ()
set(CMAKE_CXX_FLAGS "-O3 -std=c++17 -fPIC")
endif ()
file(GLOB SRC "src/*.cpp")
include_directories("src/")
add_library(integration SHARED ${SRC})
target_link_libraries(integration PUBLIC sdrpp_core discord-rpc)
set_target_properties(integration PROPERTIES PREFIX "")
# Install directives
install(TARGETS integration DESTINATION lib/sdrpp/plugins)