- OpenSSL
- SQLiteCpp (Git Submodule)
Make sure to have a basic CPP development set up with a compiler and CMake or Meson and ideally Ninja
brew install openssl
Make sure to have a basic CPP development set up with a compiler and CMake or Meson and ideally Ninja
sudo apt install libssl-dev
¯\_(ツ)_/¯ Good luck
I prefer to use Meson since its a little more user friendly than CMake. This will compile and install the SQLiteCpp library to your machine.
git submodule update --init --recursive
cd SQLiteCpp
mkdir build
cd build
- With Meson:
meson setup ../
meson compile
meson install
- With CMake:
cmake ../ -GNinja
ninja
ninja install
Ensure all dependencies are compiled and installed then simply run
mkdir build
cd build
- With CMake:
cmake ../ -GNinja
ninja
./gemini-gaggle
- With Meson:
meson setup ../
meson compile
./gemini-gaggle
Feel free to contribute, however this is not a project that will be maintained regularly and is simply just for fun.