D++ (DPP)
C++ Discord API Bot Library
|
To install D++ on a system with VCPKG:
vcpkg integrate install
to integrate it with your preferred IDE. This has been reported to work with Visual Studio, VSCode, and JetBrains CLion.vcpkg install dpp:x64-windows
vcpkg list dpp
to check that the package is installed, as so:c:\vcpkg>vcpkg list dpp dpp:x64-windows 10.0.29 D++ Extremely Lightweight C++ Discord Library.
CMake
based project by adding the following instructions to your CMakeLists.txt
:find_package(dpp CONFIG REQUIRED) target_link_libraries(${PROJECT_NAME} PRIVATE dpp::dpp)