2021-04-20 02:58:47 +02:00
|
|
|
cmake_minimum_required(VERSION 3.13)
|
2021-04-20 20:34:54 +02:00
|
|
|
project(discord-integration)
|
2021-04-20 02:58:47 +02:00
|
|
|
|
|
|
|
if (MSVC)
|
|
|
|
set(CMAKE_CXX_FLAGS "-O2 /std:c++17 /EHsc")
|
|
|
|
elseif (CMAKE_CXX_COMPILER_ID MATCHES "Clang")
|
2021-04-20 03:47:11 +02:00
|
|
|
set(CMAKE_CXX_FLAGS "-O3 -std=c++17 -Wno-unused-command-line-argument -undefined dynamic_lookup -fPIC")
|
2021-04-20 02:58:47 +02:00
|
|
|
else ()
|
2021-04-20 03:47:11 +02:00
|
|
|
set(CMAKE_CXX_FLAGS "-O3 -std=c++17 -fPIC")
|
2021-04-20 02:58:47 +02:00
|
|
|
endif ()
|
|
|
|
|
2021-04-20 23:33:11 +02:00
|
|
|
add_subdirectory("discord-rpc")
|
2021-04-20 02:58:47 +02:00
|
|
|
|
2021-04-20 23:33:11 +02:00
|
|
|
file(GLOB SRC "src/*.cpp")
|
|
|
|
include_directories("src/" "discord-rpc/include")
|
2021-04-20 03:19:16 +02:00
|
|
|
|
2021-04-20 23:33:11 +02:00
|
|
|
add_library(discord-integration SHARED ${SRC})
|
|
|
|
target_link_libraries(discord-integration PUBLIC sdrpp_core discord-rpc)
|
|
|
|
set_target_properties(discord-integration PROPERTIES PREFIX "")
|
2021-04-20 02:58:47 +02:00
|
|
|
|
|
|
|
# Install directives
|
2021-04-20 23:33:11 +02:00
|
|
|
install(TARGETS discord-integration DESTINATION lib/sdrpp/plugins)
|