C++ wrapper for the Mastodon and Pleroma APIs.
|
||
---|---|---|
cmake | ||
examples | ||
include | ||
pkg-config | ||
src | ||
tests | ||
.drone.yml | ||
.editorconfig | ||
.gitignore | ||
build_doc.sh | ||
CMakeLists.txt | ||
CODE_OF_CONDUCT.adoc | ||
CONTRIBUTING.adoc | ||
Doxyfile | ||
LICENSE | ||
README.adoc |
mastodonpp
mastodonpp is a C++ wrapper for the Mastodon API. It replaces mastodon-cpp.
Table of Contents
Usage
Have a look at the reference.
Install
From source
Dependencies
Get sourcecode
Release
Download the current release at schlomp.space.
Development version
git clone https://schlomp.space/tastytea/mastodonpp.git
Compile
mkdir -p build && cd build
cmake ..
cmake --build . -- -j$(nproc --ignore=1)
CMake options:
-
-DCMAKE_BUILD_TYPE=Debug
for a debug build. -
-DWITH_TESTS=YES
if you want to compile the tests. -
-DWITH_EXAMPLES=YES
if you want to compile the examples.