summaryrefslogtreecommitdiff
path: root/docs/markdown
Commit message (Collapse)AuthorAgeFilesLines
* Added release note mention of embedded Python in MSI packages.runpythonJussi Pakkanen2017-11-211-0/+9
|
* docs: Add 'cygwin' to reference table for .system()Jon Turney2017-11-191-0/+1
| | | | | This aligns this table with the set of values tested for by test case common/140
* Documentation: Add note about SCAN_BUILDChristoph Behle2017-11-191-0/+6
| | | | | When running ninja scan-build you can use the environment variable SCAN_BUILD to choose the right executable.
* Appveyor example now validates. Closes #2641.Jussi Pakkanen2017-11-191-9/+10
|
* Fix literal backslash syntaxLucas Werkmeister2017-11-191-1/+1
| | | In CommonMark, there are no backslash escapes in code spans, so only two backslashes in the source document are necessary to produce two backslashes in the output document.
* docs: fix description of default_optionsJoergen Ibsen2017-11-131-7/+7
| | | | | | | | For dependency() and subproject(), the default_options argument can override the defaults in the subproject's meson_options.txt, not in its project() invocation. Resolves #2612
* Merge pull request #2000 from t-chaik/tchaik/wip/get-unquotedJussi Pakkanen2017-11-132-0/+9
|\ | | | | config data: add .get_unquoted() convenience method to get quoted string unquoted
| * get-unquoted: Queue a release note entry mentioning the new methodMartin Blanchard2017-09-151-0/+4
| |
| * get-unquoted: Mention get_unquoted() in reference manualMartin Blanchard2017-09-151-0/+5
| |
* | Merge pull request #2511 from jon-turney/prefix-dependent-defaultsJussi Pakkanen2017-11-131-0/+10
|\ \ | | | | | | Make sysconfdir, localstatedir and sharedstatedir defaults depend on prefix
| * | Make sysconfdir, localstatedir and sharedstatedir defaults depend on prefixJon Turney2017-10-281-0/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Rather than requiring a bit of boilerplate in every meson.build, which is only documented in a comment in mesoncore.py, use sensible defaults for sysconfdir, localstatedir and sharedstatedir depending on the prefix. Fixes #1637 v2: For clarity, give get_builtin_option_default() a noneIfSuppress argument, rather than overloading prefix '' and None with special meanings.
* | | docs: Remove extra whitespace from i18nTingPing2017-11-131-4/+0
| | |
* | | Cleanupping.Jussi Pakkanen2017-11-111-22/+69
| | |
* | | Merge pull request #2444 from dcbaker/llvmJussi Pakkanen2017-11-081-0/+8
|\ \ \ | | | | | | | | LLVM: Fix dynamic vs statically linking.
| * | | docs: Add a snippet for LLVM static linking supportDylan Baker2017-10-251-0/+8
| | | |
* | | | Add description on how to use external and internal dependencies ↵Jussi Pakkanen2017-11-081-17/+46
| | | | | | | | | | | | | | | | interchangeably.
* | | | docs: fix use of depsJoergen Ibsen2017-11-071-1/+1
| | | |
* | | | Small changes for syntax hightlightDavid Pérez-Suárez2017-11-062-3/+3
| | | |
* | | | Merge pull request #2562 from 1ace/fix/mesontestJussi Pakkanen2017-10-312-6/+6
|\ \ \ \ | | | | | | | | | | Remove references to `mesontest`
| * | | | docs: remove references to `mesontest`Eric Engestrom2017-10-312-6/+6
| | | | | | | | | | | | | | | | | | | | `mesontest` is deprecated, and shouldn't be suggested to users anymore.
* | | | | interpreter: Add warning functionPaulo Antonio Alvarez2017-10-312-0/+14
|/ / / /
* | | | Add LibWmf as a specified dependency, and associated tests.Félix Piédallu2017-10-311-0/+10
| | | |
* | | | Merge pull request #2529 from leiflm/qt5-add-moc-extra-arguments-keywordJussi Pakkanen2017-10-292-6/+19
|\ \ \ \ | |_|/ / |/| | | Qt5-Module: Add `moc_extra_arguments` keyword support.
| * | | documentation: adds new keyword usage to the given example.Leif Middelschulte2017-10-271-1/+3
| | | |
| * | | adds "since"-note for the new keyword to the documentationLeif Middelschulte2017-10-271-1/+1
| | | |
| * | | updates the documentation to follow the list-style to explain arguments.Leif Middelschulte2017-10-271-4/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | As per to @jon-turney's and @jpakanne's suggestion [0], this commit changes the "prosa" documentation to a list-style one. [0] https://github.com/mesonbuild/meson/pull/2529#pullrequestreview-72265697
| * | | Qt5-Module: Add `moc_extra_arguments` keyword support.Leif Middelschulte2017-10-252-5/+13
| |/ / | | | | | | | | | | | | | | | This commit adds support for an additional `moc_extra_arguments` keyword. It becomes especially handy, when `moc`-ed sources conditionally provide `slots`, depending on compile time macros (i.e. defines).
* | | docs: add pkgconfig to cross file exampleMike Gilbert2017-10-261-0/+1
|/ /
* | Fix inconsistent header levelsJay Sherby2017-10-241-2/+2
| |
* | docs: Fix date being interpreted as an ordered list itemLuis Menina2017-10-241-2/+2
| |
* | Update references from mesonconf to meson configureKevin Anderson2017-10-235-8/+8
| | | | | | | | Fixes #2372
* | docs: Remove unnecessary trailing whitespacesLuis Menina2017-10-235-14/+14
| |
* | docs: Markdown headers don't need trailing hash signsLuis Menina2017-10-238-25/+25
| | | | | | | | | | | | | | | | This is a cosmetic change because github seems to interpret those correctly. Nonetheless, it adds unnecessary noise and makes people modifying the pages think it might be needed. See syntax guide at https://guides.github.com/features/mastering-markdown/
* | docs: Fix markdown in 'design rationale' pageLuis Menina2017-10-231-8/+8
| |
* | Fix invalid example in Syntax.mdJonas Platte2017-10-231-1/+1
| |
* | Arguments, not flags.Jussi Pakkanen2017-10-131-1/+1
| |
* | Link to MesonPorting is not rendered as URLCarlos Garcés2017-10-121-1/+1
| |
* | Typo and grammar fixes for 0.43.0 release noteJon Turney2017-10-111-2/+2
| |
* | docs: Improve code snippets in release notesTingPing2017-10-081-38/+50
| |
* | Added release note page for 0.44.Jussi Pakkanen2017-10-081-0/+16
| |
* | Collated release note snippets to main file.Jussi Pakkanen2017-10-089-104/+102
| |
* | gnome: g-ir-scanner accepts multiple symbol-prefix argumentsRico Tzschichholz2017-10-081-1/+2
| |
* | docs: Use consistent whitespace for gnome kwargsTingPing2017-10-051-25/+0
| |
* | Update to not use deprecated mesonconfDavid Strauss2017-10-041-1/+1
| |
* | Update Reference-manual.mdNirbheek Chauhan2017-10-031-1/+2
| |
* | Update Reference-manual.mdNirbheek Chauhan2017-10-031-4/+11
| | | | | | Fix documentation breakage from https://github.com/mesonbuild/meson/pull/2415
* | Fix typo and clarify library documentationxarkes2017-10-031-2/+3
| |
* | Merge pull request #2397 from mesonbuild/prebuiltJussi Pakkanen2017-10-021-0/+20
|\ \ | | | | | | Better support for prebuilt shared libs
| * | Add rpath entries for all found libraries outside of system libraries.prebuiltJussi Pakkanen2017-10-021-4/+9
| | |
| * | Added release note snippet for prebuilt shared libs.Jussi Pakkanen2017-09-301-0/+15
| | |