tastytea
9231159fdf
All checks were successful
continuous-integration/drone/push Build is passing
There seems to be a bug in the CMake module for std::filesystem, <https://github.com/vector-of-bool/CMakeCM/issues/7>.
2.2 KiB
2.2 KiB
fediblock-backend
fediblock-backend turns form data into JSON and opens a pull request on FediBlock/data.
Table of Contents
Install
From source
Dependencies
Get sourcecode
git clone https://schlomp.space/FediBlock/backend.git
Compile
mkdir -p build && cd build
cmake ..
cmake --build . -- --jobs=$(nproc --ignore=1)
CMake options:
-
-DCMAKE_BUILD_TYPE=Debug
for a debug build. -
-DWITH_TESTS=YES
if you want to compile the tests. -
-DWITH_CLANG-TIDY=YES
to check the sourcecode with clang-tidy while compiling. -
One of:
-
-DWITH_DEB=YES
if you want to be able to generate a deb-package. -
-DWITH_RPM=YES
if you want to be able to generate an rpm-package.
-
To create a deb or rpm package, run make package
after compiling.