From 18def622b42c8b280d6a9a97289c89a6bf6ecc5b Mon Sep 17 00:00:00 2001 From: Rachael Alexanderson Date: Thu, 10 Mar 2022 15:08:28 -0500 Subject: [PATCH] - remove examples from DiscordRPC library - we don't need them. the library is freely available for anyone who needs them. --- libraries/discordrpc/CMakeLists.txt | 6 ------ 1 file changed, 6 deletions(-) diff --git a/libraries/discordrpc/CMakeLists.txt b/libraries/discordrpc/CMakeLists.txt index 5dad9e9f6..e13e3a58b 100644 --- a/libraries/discordrpc/CMakeLists.txt +++ b/libraries/discordrpc/CMakeLists.txt @@ -3,11 +3,8 @@ project (DiscordRPC) include(GNUInstallDirs) -option(BUILD_EXAMPLES "Build example apps" ON) - # format file(GLOB_RECURSE ALL_SOURCE_FILES - examples/*.cpp examples/*.h examples/*.c include/*.h src/*.cpp src/*.h src/*.c ) @@ -51,6 +48,3 @@ add_library(rapidjson STATIC IMPORTED ${RAPIDJSON}) # add subdirs add_subdirectory(src) -if (BUILD_EXAMPLES) - add_subdirectory(examples/send-presence) -endif(BUILD_EXAMPLES)