| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
| | |
|
| | |
|
| |
| |
| |
| | |
Also adjust relevant documentation
|
| | |
|
|/ |
|
| |
|
|\
| |
| | |
gnome.generate_gir: refactor and allow passing multiple libraries
|
| |
| |
| |
| | |
Fixes #3688
|
| | |
|
| | |
|
|/ |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Ninja buffers all commands and prints them only after they are
complete. Because of this, long-running commands such as `cargo
build` show no output at all and it's impossible to know if the
command is merely taking too long or is stuck somewhere.
To cater to such use-cases, Ninja has a 'pool' with depth 1 called
'console', and all processes in this pool have the following
properties:
1. stdout is connected to the program, so output can be seen in
real-time
2. The output of all other commands is buffered and displayed after
a command in this pool finishes running
3. Commands in this pool are executed serially (normal commands
continue to run in the background)
This feature is available since Ninja v1.5
https://ninja-build.org/manual.html#_the_literal_console_literal_pool
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
| |
Currently the former will be parsed as [''], while the latter is parsed
as [] in python. This makes for some obnoxious special handling
depending on what the user passes. This is even more obnoxious since for
string type arguments this doesn't require special handling.
|
| |
|
| |
|
|
|
|
| |
Expose depends: from the custom_target this creates.
|
|
|
|
|
|
| |
capture: false means we won't try to read the stdout at all.
Closes https://github.com/mesonbuild/meson/issues/3364
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Since `build_always` also adds a target to the set of default targets,
this option is marked deprecated in favour of the new option
`build_always_stale`.
`build_always_stale` *only* marks the target to be always considered out
of date, but does *not* add it to the set of default targets.
The old behaviour can still be achieved by combining
`build_always_stale` with `build_by_default`.
fixes #1942
|
|
|
|
|
|
|
|
|
|
|
| |
This is a special type of option to be passed to most 'required' keyword
arguments. It adds a 3rd state to the traditional boolean value to cause
those methods to always return not-found even if the dependency could be
found.
Since integrators doesn't want enabled features to be a surprise there
is a global option "auto_features" to enable or disable all
automatic features.
|
| |
|
| |
|
|
|
|
|
| |
Also add a test that ensures that new base options and compiler options
are always documented.
|
| |
|
|
|
|
|
|
|
|
| |
When using binutils's windres, we can instruct it to invoke the preprocessor
in such a way that it writes a depfile, so that dependencies on #included
files are automatically tracked.
Not implemented for MSVC tools, so skip testing it in that case.
|
|
|
|
| |
Allow substitutions in custom_target() depfile: as well as in command:
|
| |
|
|
|
|
|
|
|
|
| |
Expose depend_files: from the custom_target this creates.
This is the change suggested in #2815, with tests and documentation added.
Fixes #2789 (duplicate #2830)
|
|
|
|
|
|
| |
* configure_file: Add output_format kwarg
* docs: Reference-manual.md output_format was added in 0.47 [skip ci]
|
| |
|
|
|
|
| |
Also add a release notes snippet for it.
|
|\
| |
| | |
configure_file: Add a new action 'copy'
|
| | |
|
|\ \
| | |
| | | |
Add new built-in type, dict
|
| | | |
|
| |/ |
|
|/
|
|
| |
Closes #3516
|
|\
| |
| | |
Introduce install_umask to determine permissions of files in install tree. Default it to 022
|
| | |
|
| | |
|
| | |
|
|/
|
|
|
|
|
| |
To maintain backward compatibility we cannot add recursive objects by
default. Print a warning when there are recursive objects to be pulled
and the argument is not set. After a while we'll do pull recursive
objects by default.
|
|\
| |
| | |
Add test(depends) keyword parameter
|
| | |
|
| |
| |
| |
| |
| |
| |
| |
| | |
This adds a new method, partial_dependency to all dependencies. These
sub dependencies are copies of the original dependency, but with one or
more of the attributes replaced with an empty list. This allows creating
a sub dependency that has only cflags or drops link_arguments, for
example.
|
|\ \
| | |
| | | |
Accept -D for meson level options durring initial configuration
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
I'm not really happy about this to be honest, I don't like having both
-- and -D options, I think it's stupid to have two ways to do exactly
the same thing, especially since we then have to validate that someone
hasn't passed the argument both ways.
However, other people want this, so here it is.
Fixes #969
|