How to install WuZ ================== Let's install WuZ ! For now, the only way is to compile it by yourself. Compiling WuZ using Makefile (aka the easy way) ----------------------------------------------- You can compile the project using the Makefile at the repository root. Then you can install WuZ using the ``make install`` command. You may need to be root, if so, just do ``sudo make install`` instead. .. code-block:: bash make make install Et voila ! You are ready to use WuZ. Compiling WuZ using Meson --------------------------- If you prefere not to use the provided Makefile, you can use meson directly. .. code-block:: bash meson setup build meson compile -C build meson install -C build