mirror of
https://github.com/gnif/LookingGlass.git
synced 2024-11-22 05:27:20 +00:00
[doc] build: Change Client Building notes to full cmake commands
This may help novices or people who have trouble constructing the commands themselves
This commit is contained in:
parent
0db17f803b
commit
0759a7664b
@ -177,17 +177,26 @@ it directly from the build directory:
|
||||
|
||||
.. note::
|
||||
|
||||
For users running GNOME on Wayland, you likely want to pass
|
||||
``-DENABLE_LIBDECOR=ON`` to ``cmake``, i.e. run ``cmake -DENABLE_LIBDECOR=ON ../``.
|
||||
For users running GNOME on Wayland, you may want to enable libdecor when
|
||||
building.
|
||||
|
||||
.. code:: bash
|
||||
|
||||
cmake -DENABLE_LIBDECOR=ON ../
|
||||
|
||||
For details, see :ref:`the FAQ <gnome_wayland_decorations>`.
|
||||
|
||||
.. note::
|
||||
|
||||
The most common compile error is related to backtrace support. This can be
|
||||
disabled by adding the following option to the cmake command:
|
||||
``-DENABLE_BACKTRACE=0``. However, if you disable this and need support for
|
||||
a crash, use ``gdb`` to obtain a backtrace manually.
|
||||
The most common compile error is related to backtrace support. Try disabling
|
||||
this when building:
|
||||
|
||||
.. code:: bash
|
||||
|
||||
cmake -DENABLE_BACKTRACE=0 ../
|
||||
|
||||
If you disable this and need support for crash, use ``gdb`` to obtain a
|
||||
backtrace manually.
|
||||
|
||||
.. _host_building:
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user