C++ wrapper for the Mastodon and Pleroma APIs.
Go to file
tastytea 6b5936a4b6
continuous-integration/drone/push Build is passing Details
Replace append with +=.
2020-01-08 17:39:47 +01:00
cmake Add curl as dependency to CMake config and pkg-config recipe. 2020-01-04 11:46:10 +01:00
examples Fix include in example, prefer local header. 2020-01-07 09:02:16 +01:00
include Fix / ignore some clang-tidy warnings. 2020-01-08 17:38:27 +01:00
pkg-config Add curl as dependency to CMake config and pkg-config recipe. 2020-01-04 11:46:10 +01:00
src Replace append with +=. 2020-01-08 17:39:47 +01:00
tests Renamed “Request” to “Connection”. 2020-01-05 09:38:13 +01:00
.drone.yml CI: Compile exmaples. 2020-01-07 09:16:30 +01:00
.editorconfig Add skeleton. 2020-01-03 08:32:03 +01:00
.gitignore Expand git ignores. 2020-01-03 10:20:09 +01:00
CMakeLists.txt Explicitly set NDEBUG for non-debug builds. 2020-01-05 12:45:50 +01:00
CODE_OF_CONDUCT.adoc Add contributing guidelines and COC. 2020-01-03 06:30:29 +01:00
CONTRIBUTING.adoc Add contributing guidelines and COC. 2020-01-03 06:30:29 +01:00
Doxyfile Add documentation. 2020-01-03 11:27:32 +01:00
LICENSE Add license. 2020-01-03 06:29:45 +01:00
README.adoc CI: Test with clang. 2020-01-07 09:13:57 +01:00
build_doc.sh Add documentation. 2020-01-03 11:27:32 +01:00

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

  • Tested OS: Linux

  • C++ compiler (tested: GCC 7/8/9, clang 6/7)

  • CMake (at least: 3.9)

  • curl (tested: 7.66 / 7.58)

  • Optional

    • Documentation: Doxygen (tested: 1.8)

    • Tests: Catch (tested: 2.5 / 1.2)

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.