D++ (DPP)
C++ Discord API Bot Library
Installing with Conan

To install D++ into a project using conan 2.0 and cmake:

  • Ensure conan is correctly installed, the most popular method is with pip.
  • Create a conanfile.txt in the root of the project.
[requires]
dpp/10.0.29
[generators]
CMakeDeps
CMakeToolchain
  • You may now use the library within a CMake based project by adding instructions such as these to your CMakeLists.txt:
set(CMAKE_PREFIX_PATH "${CMAKE_CURRENT_LIST_DIR}/build")
find_package(dpp CONFIG REQUIRED)
target_link_libraries(${PROJECT_NAME} dpp::dpp)
  • If you recieve any errors about CXX version you may need to set it
set(CMAKE_CXX_STANDARD 17)
  • You will then also want to set your build type to match what you will be using in conan(Debug or Release)
set(CMAKE_BUILD_TYPE Debug)

OR

set(CMAKE_BUILD_TYPE Release)
  • Now run the following commands
mkdir build && cd build
conan install .. --build=missing -of=. -s build_type=Release
cmake ..
make
  • NOTE: build_type= needs to match whatever was set in your CMake or you will get linker issues.
D++ Library version 9.0.13D++ Library version 9.0.12D++ Library version 9.0.11D++ Library version 9.0.10D++ Library version 9.0.9D++ Library version 9.0.8D++ Library version 9.0.7D++ Library version 9.0.6D++ Library version 9.0.5D++ Library version 9.0.4D++ Library version 9.0.3D++ Library version 9.0.2D++ Library version 9.0.1D++ Library version 9.0.0D++ Library version 1.0.2D++ Library version 1.0.1D++ Library version 1.0.0