aboutsummaryrefslogtreecommitdiff
path: root/docs/markdown/Commands.md
AgeCommit message (Collapse)AuthorFilesLines
2022-03-15Revert "devenv: Set PYTHONPATH where we install python modules"Eli Schwartz1-9/+0
This reverts commit 79c6075b560dbf1c3e4e0b30f1c472dc2086421e. # Conflicts: # docs/markdown/snippets/devenv.md # mesonbuild/modules/python.py # test cases/unit/91 devenv/test-devenv.py PYTHONPATH cannot be reliably determined. The standard use case for installing python modules with Meson is mixed pure sources (at least `__init__.py`) and compiled extension_modules or configured files. Unfortunately that doesn't actually work because python will not load the same package hierarchy from two different directories, one a source directory and one a (mandatory) out of tree build directory. (It kind of can, but you need to do what this test case accidentally stumbled upon, which is namespace packages. Namespace packages are a very specific use case and you are NOT SUPPOSED to use them outside that use case, so people are not going to use them just to circumvent Meson devenv stuff as that would have negative install-time effects.) Adding PYTHONPATH anyway will just lead to documentation commitments which we cannot actually uphold, and confusing issues at time of use because some imports *will* work... and some will *not*. The end result will be a half-created tree of modules which just doesn't work together at all, but because it partially works, users attempting to debug it will spend time wondering why parts of it do import. For any case where the automatic devenv would work correctly, it will also work correctly to use `meson.add_devenv()` a single time, which is very easy to manually get correct and doesn't provide any significant value to automate. In the long run, an uninstalled python package environment will require "editable installs" support.
2022-03-09Add new env2mfile command.Jussi Pakkanen1-0/+29
2022-02-28devenv: Setup GDB auto-load scriptsXavier Claessens1-0/+7
When the project instals GDB helper scripts, copy them into meson-private directory with the right tree layout and write a .gdbinit script to load them automatically.
2022-02-28devenv: Source bash completion scriptsXavier Claessens1-0/+3
2022-02-28devenv: Set PYTHONPATH where we install python modulesXavier Claessens1-0/+9
2021-08-15editorconfig: add setting to trim trailing whitespaceEli Schwartz1-1/+1
and clean up all outstanding issues Skip 'test cases/common/141 special characters/meson.build' since it intentionally uses trailing newlines.
2021-08-04destdir: Allow relative to build directoryXavier Claessens1-0/+3
Meson already works like that, except in do_copydir() that requires absolute destdir. Better explicitly support that instead of leaving it undefined and unconsistent.
2021-06-25msubprojects: Run action on all subprojects in parallelXavier Claessens1-1/+3
This moves all the code into a class and call its run() method in a thread. The class queues all logs to print them at the end to avoid mixing output of multiple actions.
2021-06-23gnome: Set GSETTINGS_SCHEMA_DIR in devenvXavier Claessens1-0/+4
2021-03-23devenv: Set GI_TYPELIB_PATH and LD_LIBRARY_PATH (#8548)Xavier Claessens1-0/+7
2021-03-16Add `meson devenv` command and meson.add_devenv()Xavier Claessens1-0/+34
2021-01-31Capitalize "Meson" consistently as it is a proper name. [skip ci]Jussi Pakkanen1-9/+9
2021-01-30Rewrap long text lines in docs. [skip ci]Jussi Pakkanen1-14/+27
2021-01-13Fix misspellsAntonin Décimo1-1/+1
Signed-off-by: Antonin Décimo <antonin.decimo@gmail.com>
2021-01-11doc: fix invalid Commands.md example for introspect [skip ci]Eli Schwartz1-1/+1
It requires at least one option argument, and the one that provides "basic information" about the project is --projectinfo, so let's use that to demo the command. Fixes #8182
2021-01-10Hotdoc: use template for Commands.md instead of generating the entire file ↵Eli Schwartz1-0/+252
(#8154) * doc: fix hotdoc misuse for dynamically generated content hotdoc has a native include feature for including files inline. Use this to generate one file for each dynamically generated code block, and include that file in Commands.md; see: https://hotdoc.github.io/syntax-extensions.html#smart-file-inclusion-syntax This permits us to move back to using the in-tree version of the hotdoc *.md sources, thus fixing the incorrect inclusion of "builddir/" in the "Edit on github" links which resulted from using copies as the source. Fixes #8061 * doc: call the dummy file a "stamp" as it is a better known term
2020-06-30Made Commands.md dynamically generated (#7346)TheQwertiest1-658/+0
2020-06-29Added ability to specify target in `meson compile`TheQwertiest1-5/+34
2020-06-28Added ability to pass arguments to backend in `meson compile`TheQwertiest1-1/+30
2020-06-21mcompile: Add --verbose modeIgor Raits1-0/+2
Closes: https://github.com/mesonbuild/meson/issues/7352 Signed-off-by: Igor Raits <i.gnatenko.brain@gmail.com>
2020-06-18docs: replaced `ninja` with appropriate `meson` commands [skip ci]TheQwertiest1-17/+3
2020-06-16doc: Fix missing --force-fallback-for documentationXavier Claessens1-0/+8
2020-06-15Added docs for all meson commands + corresponding unit test (#7217)TheQwertiest1-0/+604