- remove examples from DiscordRPC library - we don't need them. the library is freely available for anyone who needs them.

This commit is contained in:
Rachael Alexanderson 2022-03-10 15:08:28 -05:00
parent add069885f
commit 18def622b4

View file

@ -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)