Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,22 @@ are in line with the DCO.
Compiling Instructions
----------------------

To compile ``platsch`` and ``libplatsch`` call:

.. code-block:: shell

meson setup build
meson compile -C build

This compiles ``platsch`` with all dependent libraries linked dynamically
except for ``libplatsch`` which is always static linked.

To provide faster startup of ``platsch`` the dependent libraries can be linked
static as well if available:

.. code-block:: shell

meson setup -Dprefer_static=true build
meson compile -C build

Be aware that the size increases from ~50k to ~110k.