summaryrefslogtreecommitdiff
path: root/docs/markdown
Commit message (Collapse)AuthorAgeFilesLines
...
* | | Clarify that configuration_data()'s copy is immutableAleksey Filippov2018-05-241-0/+1
|/ /
* | Merge pull request #3383 from mesonbuild/nirbheek/configure-file-nodataJussi Pakkanen2018-05-222-1/+17
|\ \ | | | | | | configure_file: Add a new action 'copy'
| * | docs: Add manual entry for configure_file copy kwargnirbheek/configure-file-nodataNirbheek Chauhan2018-05-222-1/+17
| | |
* | | Merge pull request #3490 from MathieuDuponchelle/dict_builtinJussi Pakkanen2018-05-223-6/+97
|\ \ \ | | | | | | | | Add new built-in type, dict
| * | | dict: add since annotationsMathieu Duponchelle2018-05-222-1/+6
| | | |
| * | | dict: fix CI issuesMathieu Duponchelle2018-05-211-2/+2
| | | |
| * | | dict: Document, add release snippetMathieu Duponchelle2018-05-203-6/+92
| |/ /
* | | Merge pull request #3523 from taisei-project/run_command_checkJussi Pakkanen2018-05-222-1/+12
|\ \ \ | | | | | | | | Add 'check' kwarg for run_command
| * | | Update documentation for run_command [skip ci]Andrei Alexeyev2018-05-221-1/+8
| | | |
| * | | Add 'check' kwarg for run_commandAndrei Alexeyev2018-05-221-0/+4
| |/ / | | | | | | | | | Closes #3516
* | | Update Users.mdrandy4082018-05-221-0/+2
|/ /
* | docs: Add a warning about find_program().path()Nirbheek Chauhan2018-05-091-3/+3
| | | | | | See: https://github.com/mesonbuild/meson/issues/3552
* | subprojects.md: document --wrap-mode Nirbheek Chauhan2018-05-091-0/+29
| | | | | | Closes https://github.com/mesonbuild/meson/issues/3534
* | Reference-manual: compiler checksNirbheek Chauhan2018-05-091-0/+6
| | | | | | | | Document that compiler checks are self-contained and do not add arguments from anywhere else.
* | docs: Added reference to pkg-config module page [skip ci]Roy Buitenhuis2018-05-021-0/+2
| |
* | [skip ci] fixed broken link to repoinit.py script in wrap documentationAlexis Jeandet2018-05-011-3/+3
|/ | | | Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>
* Merge pull request #3225 from filbranden/fixperms3Jussi Pakkanen2018-04-261-0/+17
|\ | | | | Introduce install_umask to determine permissions of files in install tree. Default it to 022
| * Add release-notes snippet for install_umaskFilipe Brandenburger2018-04-181-0/+17
| |
* | Wrap-git files can have tags as well as commit ids. [skip ci]Jussi Pakkanen2018-04-251-3/+3
| |
* | Tweak some 0.46 release note language [skip ci]Nirbheek Chauhan2018-04-241-26/+30
| |
* | Users.md: Add bolt [skip ci]Nirbheek Chauhan2018-04-241-0/+1
| |
* | docs: Fix syntax highlighting in 0.46.0 notesTingPing2018-04-231-5/+6
| |
* | Fix section headers in 0.46 release note [skip ci]Jon Turney2018-04-231-1/+6
| |
* | Updated version number for new release.0.46.0Jussi Pakkanen2018-04-2326-284/+317
| |
* | Merge pull request #3446 from MathieuDuponchelle/python_module_with_docJussi Pakkanen2018-04-221-7/+33
|\ \ | | | | | | modules/python: add some more options around path and config_vars
| * | Python module: update documentation for new APIMathieu Duponchelle2018-04-221-7/+33
| | |
* | | Add more tests for multi-line strings and update docsNirbheek Chauhan2018-04-212-13/+12
|/ /
* | docs: Update gnome.gdbus-codegen docsNirbheek Chauhan2018-04-201-3/+6
| |
* | extract_all_objects: Add 'recursive' keyword argumentXavier Claessens2018-04-182-1/+17
|/ | | | | | | 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.
* Merge pull request #3314 from sarum9in/test_dependsJussi Pakkanen2018-04-182-0/+12
|\ | | | | Add test(depends) keyword parameter
| * Add test(depends) documentationAleksey Filippov2018-03-252-0/+12
| |
* | Add partial_dependency method to dependenciesDylan Baker2018-04-172-0/+51
| | | | | | | | | | | | | | | | 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.
* | Merge pull request #3243 from dcbaker/accept-d-setupJussi Pakkanen2018-04-171-0/+6
|\ \ | | | | | | Accept -D for meson level options durring initial configuration
| * | mconf: accept -- options like `meson` doesDylan Baker2018-04-171-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
| * | Accept builtin options with -D when making initial meson callDylan Baker2018-04-171-0/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* | | Merge pull request #3353 from xclaesse/has-link-argumentJussi Pakkanen2018-04-172-4/+29
|\ \ \ | | | | | | | | Add has_link_argument() and friends
| * | | Add has_link_argument() and friendsXavier Claessens2018-04-162-4/+29
| | | | | | | | | | | | | | | | Closes: #3335.
* | | | Merge pull request #3240 from MathieuDuponchelle/python_moduleJussi Pakkanen2018-04-172-0/+201
|\ \ \ \ | | | | | | | | | | Implement a generic python module
| * | | | [fixup]: Fix snippets headingMathieu Duponchelle2018-04-101-1/+1
| | | | |
| * | | | [fixup]: write documentationMathieu Duponchelle2018-04-092-0/+201
| | | | |
* | | | | Merge pull request #1852 from QuLogic/openmpJussi Pakkanen2018-04-171-0/+6
|\ \ \ \ \ | |_|_|/ / |/| | | | Add an OpenMP dependency.
| * | | | Add release note for OpenMP dependency.Elliott Sales de Andrade2018-04-171-0/+6
| | |/ / | |/| |
* | | | Add release snippetNiklas Claesson2018-04-171-0/+17
| | | |
* | | | Complete python escape sequences aware stringsTim 'mithro' Ansell2018-04-171-2/+18
|/ / / | | | | | | | | | Fixes #3169
* | | Add build snippet for non-unique-target-names featureAleksey Filippov2018-04-161-0/+9
| | |
* | | Merged Arm CC support.Jussi Pakkanen2018-04-162-0/+16
|\ \ \
| * | | Updates to CPP support and update review changesSomasekhar Penugonda2018-03-272-0/+16
| | | |
* | | | Merge pull request #3218 from mesonbuild/findoverriderJussi Pakkanen2018-04-162-0/+44
|\ \ \ \ | | | | | | | | | | Make it possible to override find_program [skip ci]
| * | | | Document that override_find_program works on configure_file [skip ci]Nirbheek Chauhan2018-04-152-5/+16
| | | | | | | | | | | | | | | | | | | | Also link to the release notes snippet from the Reference manual
| * | | | Added documentation [skip ci]Jussi Pakkanen2018-04-152-0/+33
| | | | |