1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2025-07-10 02:47:11 +02:00

Add D++ library.

This commit is contained in:
Sandu Liviu Catalin
2023-03-23 20:20:44 +02:00
parent b08a024298
commit cbd8f8b028
568 changed files with 131250 additions and 0 deletions
vendor/DPP
CMakeLists.txtCMakeSettings.jsonCODE_OF_CONDUCT.mdCONTRIBUTING.mdDockerfileDoxyfileLICENSEREADME.mdSECURITY.md
buildtools
cmake
docpages
01_frequently_asked_questions.md01_installing.md02_building_a_bot.md03_example_programs.md04_advanced_reference.mdDPP-markdown-logo.pngINDEX.md
advanced_reference
building
dl.dpp.dev
example_programs
footer.htmlfooter.template.htmlheader.htmlheader.template.html
images
install
make_a_bot
makedocs-gh-single.phpmakedocs-gh.phpmakedocs.phpstyle.css
dpp.pc.in
include
library-vcpkg
library
makerelease.shsettings.json
src
dpp
application.cppauditlog.cppautomod.cppban.cppcache.cppchannel.cppcluster.cpp
cluster
cluster_sync_calls.cppcommandhandler.cppdiscordclient.cppdiscordevents.cppdiscordvoiceclient.cppdispatcher.cppdns.cppdpp.rc.indtemplate.cppemoji.cppetf.cpp
events
guild.cpphttpsclient.cppintegration.cppinvite.cppmanaged.cppmessage.cpppermissions.cpppresence.cppprune.cppqueues.cpprole.cppscheduled_event.cppslashcommand.cppsnowflake.cppsslclient.cppstage_instance.cppuser.cpputility.cppvoiceregion.cppvoicestate.cppwebhook.cppwsclient.cpp
soaktest
unittest
testdata
vcpkg
win32
32
bin
include
openssl
opus
sodium.h
sodium
zconf.hzlib.h
lib

14
vendor/DPP/Dockerfile vendored Normal file

@ -0,0 +1,14 @@
FROM ubuntu:focal
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update && apt-get install --no-install-recommends -y libssl-dev zlib1g-dev libsodium-dev libopus-dev cmake pkg-config g++ gcc git make && apt-get clean && rm -rf /var/lib/apt/lists/*
WORKDIR /usr/src/DPP
COPY . .
WORKDIR /usr/src/DPP/build
RUN cmake .. -DDPP_BUILD_TEST=OFF
RUN make -j "$(nproc)"
RUN make install