mirror of
https://github.com/AlexandreRouma/SDRPlusPlus.git
synced 2024-11-06 18:57:39 +01:00
22 lines
745 B
CMake
22 lines
745 B
CMake
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 ()
|
|
|
|
add_subdirectory("discord-rpc")
|
|
|
|
file(GLOB SRC "src/*.cpp")
|
|
include_directories("src/" "discord-rpc/include" "../radio/src/")
|
|
|
|
add_library(discord_integration SHARED ${SRC})
|
|
target_link_libraries(discord_integration PUBLIC sdrpp_core discord-rpc)
|
|
set_target_properties(discord_integration PROPERTIES PREFIX "")
|
|
|
|
# Install directives
|
|
install(TARGETS discord_integration DESTINATION lib/sdrpp/plugins) |