summaryrefslogtreecommitdiff
path: root/docs/markdown/snippets
Commit message (Collapse)AuthorAgeFilesLines
...
* Updated docs with information about `custom_target[i]`TheQwertiest2019-04-291-2/+3
|
* Add support for the Xtensa toolchainFernando Ramos2019-04-221-0/+5
| | | | | | | | | From (almost) all points of view, the Xtensa toolchain can be treated as a regular GCC toolchain. This patch adds very basic support so that, at least, meson does not fail when trying to use "xt-xcc" (which makes it possible to use it without problems).
* Merge pull request #5289 from mesonbuild/fixxpassJussi Pakkanen2019-04-211-0/+15
|\ | | | | Report xpass results as failures.
| * Report xpass results as failures.Jussi Pakkanen2019-04-211-0/+15
| |
* | fix gpgme support by preferring pkg-config where possibleEli Schwartz2019-04-151-1/+1
|/ | | | | | | | Since gpgme 1.13.0, pkg-config files are available and this is the preferred way to detect the dependency. Without this, projects that wish to generate pkg-config files that Requires.private on gpgme, now have their custom dependency() fallbacks overridden with an incorrect configtool dependency.
* Update Built-in Option c_std for C17. Closes #4842.jrl642019-04-101-0/+9
|
* mintro: removed deprecated --target-files APIDaniel Mensinger2019-04-081-0/+4
|
* Merge pull request #5176 from ao2/add-subproject-foreach-commandJussi Pakkanen2019-04-081-0/+7
|\ | | | | Add 'meson subprojects foreach' command
| * Add 'meson subprojects foreach' commandAntonio Ospite2019-04-011-0/+7
| | | | | | | | | | | | | | | | | | | | | | Sometimes it is convenient to run an arbitrary command (e.g. 'git diff') on all subprojects. Add a 'meson subprojects foreach' command to take care of that. For this command the common argument 'subprojects' does not make sense, so only add '--sourcedir' and cover the case of a missing options.subprojects in run().
* | Add gpgme-config supportJan Tojnar2019-04-061-0/+3
| | | | | | | | | | | | GPGME does not support pkg-config so we need config-tool support if we do not want projects like Almanah and Seahorse to parse the values manually.
* | Merge pull request #5128 from Ericson2314/sanity-check-with-flagsJussi Pakkanen2019-04-021-0/+17
|\ \ | |/ |/| Sanity check with external args
| * release note snippet for user flags in sanity checks [skip ci]John Ericson2019-03-271-0/+17
| |
* | Merge pull request #5103 from mesonbuild/linkcustomJussi Pakkanen2019-04-011-0/+16
|\ \ | |/ |/| Can link against custom targets
| * Add documentation.linkcustomJussi Pakkanen2019-03-281-0/+16
| |
* | Add release note snippit for CPPFLAGS handing [skip ci]John Ericson2019-03-271-0/+12
| |
* | compilers: n_debug=if-release and buildtype=plain should not enable assertionsDylan Baker2019-03-261-0/+4
| | | | | | | | | | | | | | It's a bit odd that it doesn't, and has resulted in bugs in distro packaging. Fixes #5141
* | Merge pull request #5031 from bonzini/kconfigJussi Pakkanen2019-03-201-0/+5
|\ \ | | | | | | Kconfig Module
| * | [modules] Add kconfig moduleMark Schulte2019-03-151-0/+5
| |/ | | | | | | | | Add a kconfig module to allow meson to integrate with existing projects that use kconfig.
* | mesonbuild: allow multiple --cross-file optionsRoss Burton2019-03-201-0/+3
|/ | | | | Just like --native-file, allow multiple --cross-file options. This is mostly unifying the logic between cross_files and config_files.
* docsMichael Hirsch, Ph.D2019-03-141-0/+12
|
* Add static as keyword to find_libraryNiklas Claesson2019-03-111-0/+6
|
* Update everything for new release.0.50.0Jussi Pakkanen2019-03-1028-293/+0
|
* docs: Add snippet for python module path method [skip ci]Dylan Baker2019-03-091-0/+5
| | | | Which somehow wasn't included in the original pull request.
* rewriter: Added docsDaniel Mensinger2019-03-041-0/+18
|
* mintro: Renamed --dependencies --> --scan-dependenciesDaniel Mensinger2019-03-031-7/+4
|
* Added docsDaniel Mensinger2019-03-032-0/+49
|
* mintro: Add subproject_dir to --projectinfoDaniel Schulte2019-03-011-0/+4
|
* mintro: Add name of subproject the target is contained in to --target outputDaniel Schulte2019-03-011-0/+1
|
* add NetCDFMichael Hirsch, Ph.D2019-02-281-0/+3
|
* Allow File arguments in extract_objects() argumentsMaarten ter Huurne2019-02-191-0/+4
| | | | | Passed strings are converted to Files, but passing a File directly wasn't supported yet.
* Add warning level zerojml17952019-02-191-0/+3
|
* Fix console log from generator with multiple output nodesjml17952019-02-181-0/+3
|
* Fortran 2008/2018 Coarray supportMichael Hirsch, Ph.D2019-02-131-0/+3
|
* Merge pull request #4743 from dcbaker/native-file-extendedJussi Pakkanen2019-02-121-0/+4
|\ | | | | Extend native files to store install path information
| * allow paths to be set in the cross fileDylan Baker2019-02-111-3/+3
| | | | | | | | | | | | Just like the previous patch, but for cross files Fixes #1433
| * allow setting directory locations in a native fileDylan Baker2019-02-111-0/+4
| | | | | | | | | | | | This allows the person running configure (either a developer, user, or distro maintainer) to keep a configuration of where various kinds of files should end up.
* | Merge pull request #4826 from mensinda/confDefOptsJussi Pakkanen2019-02-121-0/+6
|\ \ | | | | | | mconf: Use introspection to print the project default options (fixes #2543)
| * | mconf: Use introspection to print the project default options (fixes #2543)Daniel Mensinger2019-01-251-0/+6
| | |
* | | Fortran 2008 submodule (#4874)Michael Hirsch, Ph.D2019-02-051-0/+12
| |/ |/|
* | CMake: Added support for CMAKE_MODULE_PATH and extra CMake args (closes #4779)Daniel Mensinger2019-02-011-0/+9
| |
* | initial HDF5 pkg-config fortran worksMichael Hirsch, Ph.D2019-01-301-0/+3
| |
* | run_command: add env kwargJan Tojnar2019-01-271-0/+9
|/
* Fixed spelling [skip ci]Daniel Mensinger2019-01-241-1/+1
|
* Add release note snippet.cudarebaseJussi Pakkanen2019-01-221-0/+7
|
* Add PGI C and C++ compilers (#4803)Michael Hirsch, Ph.D2019-01-211-0/+6
|
* docMichael Hirsch, Ph.D2019-01-171-0/+3
|
* mintro: Added `defined_in` key in the targets introspectionDaniel Mensinger2019-01-151-0/+1
|
* Deprecated --target-files APIDaniel Mensinger2019-01-071-1/+4
|
* Added release snippetDaniel Mensinger2019-01-071-0/+8
|
* Added release snippetDaniel Mensinger2019-01-061-0/+6
|