summaryrefslogtreecommitdiff
path: root/docs/markdown/snippets
Commit message (Collapse)AuthorAgeFilesLines
* Added release note mention of embedded Python in MSI packages.runpythonJussi Pakkanen2017-11-211-0/+9
|
* Merge pull request #2000 from t-chaik/tchaik/wip/get-unquotedJussi Pakkanen2017-11-131-0/+4
|\ | | | | 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
| |
* | 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.
* | | 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
| |/ /
* | | interpreter: Add warning functionPaulo Antonio Alvarez2017-10-311-0/+6
| | |
* | | Qt5-Module: Add `moc_extra_arguments` keyword support.Leif Middelschulte2017-10-251-0/+8
|/ / | | | | | | | | | | 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).
* | Collated release note snippets to main file.Jussi Pakkanen2017-10-086-83/+0
| |
* | 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
| | |
* | | Merge pull request #2373 from leiflm/svn-wrapsJussi Pakkanen2017-10-011-0/+4
|\ \ \ | |/ / |/| | introduce svn wrap support
| * | introduce svn wrap supportLeif Middelschulte2017-09-251-0/+4
| |/
* | Allow CustomTarget's to be indexedDylan Baker2017-09-271-0/+21
|/ | | | | | | | | | | This allows a CustomTarget to be indexed, and the resulting indexed value (a CustomTargetIndex type), to be used as a source in other targets. This will confer a dependency on the original target, but only inserts the source file returning by index the original target's outputs. This can allow a CustomTarget that creates both a header and a code file to have it's outputs split, for example. Fixes #1470
* Permit overriding find_program from the cross file.Jussi Pakkanen2017-09-041-0/+15
|
* Add Compiler.get_supported_arguments()Daniel Stone2017-08-311-0/+23
Add a helper for the common pattern of: args_to_use = [] foreach arg : candidate_args if cc.has_argument(arg) args_to_use += arg endif endforeach Replaced with: args_to_use = cc.get_supported_arguments(candidate_args)