Files
i3/docs
Harimbola Santatra b9a796b24a doc: update meson build instruction (#5899)
The [official build instruction][1] are deprecated on Meson 1.3.1.
These command:

    mkdir -p build && cd build
    meson ..
    ninja

... work but will yield the following warning:

> WARNING: Running the setup command as `meson [options]` instead of `meson setup [options]` is ambiguous and deprecated.

Here's the correct way, according to the [meson documentation][2]:

    mkdir -p build
    meson setup build
    meson compile -C build
    meson install -C build


[1]: https://i3wm.org/docs/hacking-howto.html#_building_i3
[2]: https://mesonbuild.com/Quick-guide.html#compiling-a-meson-project
2024-02-04 15:50:36 +01:00
..
2011-08-28 17:44:42 +02:00
2021-09-10 09:18:01 +02:00
2021-03-12 10:18:07 +01:00
2021-03-12 10:18:07 +01:00
2022-12-14 13:23:12 +01:00
2009-10-23 19:53:36 +02:00
2009-06-01 14:59:25 +02:00
2023-09-04 16:09:05 +02:00