buildcmake #19
Replies: 2 comments
-
If you see the an error of you might want to turn off the DPP_CORO option in CMake. |
Beta Was this translation helpful? Give feedback.
0 replies
-
You could alternatively use something like this in your CMakeLists.txt: find_package(dpp 10.0.23)
if(NOT dpp_FOUND)
message("Fetching D++ from GitHub...")
include(FetchContent)
FetchContent_Declare(dpp
GIT_REPOSITORY https://github.com/brainboxdotcc/DPP
GIT_TAG v10.0.23
)
FetchContent_MakeAvailable(dpp)
endif() which would let you eliminate (a) the subdirectory and (b) the call to |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
buildcmake
A lightweight C++ Discord API library supporting the entire Discord API, including Slash Commands, Voice/Audio, Sharding, Clustering and more!
https://dpp.dev/buildcmake.html
Beta Was this translation helpful? Give feedback.
All reactions