summaryrefslogtreecommitdiff
path: root/docs
AgeCommit message (Collapse)Author
2018-05-30Document how to set the default name_prefix and name_suffix [skip ci]Nirbheek Chauhan
Else people (like me) try to use the old behaviour where setting it to `''` would use the default. https://gitlab.gnome.org/GNOME/glib-networking/issues/33
2018-05-27Merge pull request #3491 from jeandet/qt_private_headersJussi Pakkanen
Qt private headers
2018-05-27Make install doc less surprising for new users [skip ci]Michael Mera
2018-05-27[Qt module] private_headers kwarg documentation reformulationAlexis Jeandet
Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>
2018-05-24Merge pull request #3476 from filbranden/intbase1Jussi Pakkanen
Add support for octal and binary int literals
2018-05-24Clarify that configuration_data()'s copy is immutableAleksey Filippov
2018-05-23Document octal and binary integer literals in syntax.Filipe Brandenburger
Also add a release notes snippet for it.
2018-05-22Merge pull request #3383 from mesonbuild/nirbheek/configure-file-nodataJussi Pakkanen
configure_file: Add a new action 'copy'
2018-05-22Merge pull request #3490 from MathieuDuponchelle/dict_builtinJussi Pakkanen
Add new built-in type, dict
2018-05-22Merge pull request #3523 from taisei-project/run_command_checkJussi Pakkanen
Add 'check' kwarg for run_command
2018-05-22Update Users.mdrandy408
2018-05-22Update documentation for run_command [skip ci]Andrei Alexeyev
2018-05-22Add 'check' kwarg for run_commandAndrei Alexeyev
Closes #3516
2018-05-22dict: add since annotationsMathieu Duponchelle
2018-05-22docs: Add manual entry for configure_file copy kwargNirbheek Chauhan
2018-05-21dict: fix CI issuesMathieu Duponchelle
2018-05-20dict: Document, add release snippetMathieu Duponchelle
2018-05-09docs: Add a warning about find_program().path()Nirbheek Chauhan
See: https://github.com/mesonbuild/meson/issues/3552
2018-05-09subprojects.md: document --wrap-mode Nirbheek Chauhan
Closes https://github.com/mesonbuild/meson/issues/3534
2018-05-09Reference-manual: compiler checksNirbheek Chauhan
Document that compiler checks are self-contained and do not add arguments from anywhere else.
2018-05-02docs: Added reference to pkg-config module page [skip ci]Roy Buitenhuis
2018-05-01[skip ci] fixed broken link to repoinit.py script in wrap documentationAlexis Jeandet
Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>
2018-04-30Added Added Qt's private header support with pkg-configAlexis Jeandet
Just use the same approach than qmake to generate private headers path Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>
2018-04-28[Qt module] Privates headers: added documentationAlexis Jeandet
Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>
2018-04-26Merge pull request #3225 from filbranden/fixperms3Jussi Pakkanen
Introduce install_umask to determine permissions of files in install tree. Default it to 022
2018-04-25Wrap-git files can have tags as well as commit ids. [skip ci]Jussi Pakkanen
2018-04-24Tweak some 0.46 release note language [skip ci]Nirbheek Chauhan
2018-04-24Users.md: Add bolt [skip ci]Nirbheek Chauhan
2018-04-23docs: Fix syntax highlighting in 0.46.0 notesTingPing
2018-04-23Fix section headers in 0.46 release note [skip ci]Jon Turney
2018-04-23Updated version number for new release.Jussi Pakkanen
2018-04-22Merge pull request #3446 from MathieuDuponchelle/python_module_with_docJussi Pakkanen
modules/python: add some more options around path and config_vars
2018-04-22Python module: update documentation for new APIMathieu Duponchelle
2018-04-21Add more tests for multi-line strings and update docsNirbheek Chauhan
2018-04-20docs: Update gnome.gdbus-codegen docsNirbheek Chauhan
2018-04-18extract_all_objects: Add 'recursive' keyword argumentXavier Claessens
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.
2018-04-18Add release-notes snippet for install_umaskFilipe Brandenburger
2018-04-18Merge pull request #3314 from sarum9in/test_dependsJussi Pakkanen
Add test(depends) keyword parameter
2018-04-17Add partial_dependency method to dependenciesDylan Baker
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.
2018-04-17Merge pull request #3243 from dcbaker/accept-d-setupJussi Pakkanen
Accept -D for meson level options durring initial configuration
2018-04-17Merge pull request #3353 from xclaesse/has-link-argumentJussi Pakkanen
Add has_link_argument() and friends
2018-04-17Merge pull request #3240 from MathieuDuponchelle/python_moduleJussi Pakkanen
Implement a generic python module
2018-04-17Merge pull request #1852 from QuLogic/openmpJussi Pakkanen
Add an OpenMP dependency.
2018-04-17mconf: accept -- options like `meson` doesDylan Baker
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
2018-04-17Accept builtin options with -D when making initial meson callDylan Baker
Currently meson only accepts `-Dopt=value` for builtin options when calling `meson configure` and `--opt=value` for builtin options when calling `meson` initially. This is a confusing behavior, and users only get a small warning at the top of a potentially long configuration summary to catch this. This has confused end users and developers alike, there are at least 5 duplicates of the bug this fixes, and I have personally been asked about this more times than I can count. The help documentation doesn't make it clear that -D cannot be used to set options like prefix and bindir. This adds support for -D options to the initial meson call, but not -- options to the meson configure call. I think it's better to have one way to do things, and -- options are kinda one off while -D is used everywhere else, so lets stick with that. Related #969
2018-04-17Add release snippetNiklas Claesson
2018-04-17Complete python escape sequences aware stringsTim 'mithro' Ansell
Fixes #3169
2018-04-17Add release note for OpenMP dependency.Elliott Sales de Andrade
2018-04-16Add has_link_argument() and friendsXavier Claessens
Closes: #3335.
2018-04-16Add build snippet for non-unique-target-names featureAleksey Filippov