aboutsummaryrefslogtreecommitdiff
path: root/docs
AgeCommit message (Collapse)AuthorFilesLines
2017-12-31Merge pull request #2757 from xclaesse/pkgconfigJussi Pakkanen1-3/+10
pkgconfig: Allow passing Dependency objects to library(_private)
2017-12-29Release notes for 0.43 are no longer preliminaryGabrĂ­el ArthĂșr PĂ©tursson1-1/+1
2017-12-28docs: Fix missing syntax highlightingTingPing1-4/+8
2017-12-28docs: find_program native: is available since 0.43Nirbheek Chauhan1-1/+1
2017-12-26Explain test setup a bit more.Jussi Pakkanen1-0/+31
2017-12-26Merge pull request #2334 from mesonbuild/promotedepJussi Pakkanen2-10/+61
Add functionality to promote nested dependencies to top level.
2017-12-26Reformat and update doc page.Jussi Pakkanen1-14/+40
2017-12-26add one more blank line at the tail of Disabler.mdPassw1-1/+1
From http://mesonbuild.com/Manual.html , it seems that `Disabler.md` messes up `Modules.md`
2017-12-20pkgconfig: Update documentationXavier Claessens1-3/+10
2017-12-20Created documentation page for code contributions.Jussi Pakkanen3-5/+160
2017-12-17Add functionality to promote nested dependencies to top level.Jussi Pakkanen2-0/+25
2017-12-17Allow value 'if-release' for b_ndebug project option. (#1896)Hemmo Nieminen1-0/+7
When set, NDEBUG will be automatically defined for for release builds but not for other build types.
2017-12-17make clickableShawn Landden1-1/+1
2017-12-16Update Users.mdShawn Landden1-1/+1
now only build system of systemd
2017-12-13Enable re-compilation of GNOME gschema files if they have changed.Michael James Gratton1-0/+7
* mesonbuild/modules/gnome.py (GnomeModule.compile_schemas): Allow the depend_files kwarg. * docs/markdown/Gnome-module.md: Add docs for new kwarg (and the only other one that is permitted).
2017-12-13Add Geary to the list of users - will use meson for the next release.Michael James Gratton1-0/+1
2017-12-12docs: Change variable in pkg-config exampleIñigo Martínez1-1/+1
The example provided for the `get_pkgconfig_variable` when using using the `define_variable` parameter is not the best example, because it is using `prefix` for both. This changes the retrieved variable for `libdir` so the efect of the variable redefinition is more noticeable.
2017-12-12docs: Add documentation to dependency variablesIñigo Martínez2-1/+18
Meson is able to redefine variables when retrieving them from `pkg-config` dependencies. However, the documentation is missing. This patch adds documentation for this feature.
2017-12-11Fix documentation on disabler behaviour with short circuiting.Jussi Pakkanen2-2/+3
2017-12-10Updated version number for new release.0.44.0Jussi Pakkanen15-148/+152
2017-12-10Merge pull request #2745 from dcbaker/submit/haikuJussi Pakkanen1-1/+2
small fixes for haiku
2017-12-09Touch up install_dir() documentationErnestas Kulik1-5/+1
It no longer removes the target tree before copying files.
2017-12-09Fix typo in release note snippet for get_unquotedJon Turney1-2/+2
Grammar is still a bit fractured, but I'm not entirely sure what it's trying to say.
2017-12-07docs: Add haiku to reference tableDylan Baker1-1/+2
2017-12-05Merge pull request #2731 from mesonbuild/disablerJussi Pakkanen4-0/+112
Created disabler object type
2017-12-05Added documentation for disabler objects.Jussi Pakkanen4-0/+112
2017-12-05Document and improve not-found dependency objectsJon Turney1-4/+8
Document dependency('', required:false) usage. Avoid emitting 'Dependency found: NO'.
2017-12-03Minor fixes.Jussi Pakkanen1-1/+1
2017-12-03String arguments can permit arbitrary string valuesJussi Pakkanen2-17/+45
by leaving out the choices keyword.
2017-12-02Reformatted and fixed running doc.Jussi Pakkanen1-22/+80
2017-12-02Merge pull request #2390 from dcbaker/submit/options-listJussi Pakkanen2-9/+45
Add an array type to user options
2017-11-30cross: Implement support for loading cross files from system pathsDylan Baker2-0/+46
One thing that makes cross compiling with meson a pain is the need for cross files. The problem is not with cross files themselves (they're actually rather brilliant in that they allow for a much greater deal of flexibility than autotools hardcoded paths approach) but that each user needs to reimplement them themselves, when for most people what they really want is a cross file that could be provided by their distro, all they really want is the correct toolchain. This patch is the first stop to making it easier for distros to ship their own cross files (and for users to put their's somewhere safe so they don't get `git clean`ed. It allows the cross files (on Linux and *BSD) to be stored in home and system paths (~/.config/meson/cross, /usr/share/meson/cross, and /usr/local/share/meson/cross), and to be loaded by simply by specificying --cross-file. With this patch meson will check the locations its always checked first, (is cross file absolute, or is it relative to $PWD), then will check ~/.config/meson/cross, /usr/local/share/meson/cross, /usr/share/meson/cross, (or $XDG_CONFIG_PATH and $XDG_DATA_DIRS) for the files, raising an exception if it cannot find the specified cross file. Fixes #2283
2017-11-29Add new array type optionDylan Baker2-9/+45
This exposes the already existing UserStringArrayOption class through the meson_options.txt. The intention is to provide a way for projects to take list/array type arguments and validate that all of the elements in that array are valid without using complex looping constructrs.
2017-11-29Merge pull request #2701 from dcbaker/submit/better-llvm-docsJussi Pakkanen1-0/+29
Minor LLVM dependency cleanups for the next release
2017-11-29docs: note when warning() was addedZbigniew Jędrzejewski-Szmek1-0/+2
Followup for 1540e615f13503722f1067c693f3d394218cbd9e.
2017-11-28docs: Add better documentation of the LLVM dependencyDylan Baker1-0/+29
2017-11-28Merge pull request #2512 from dcbaker/wip/config-tool-variablesJussi Pakkanen3-19/+24
Add method to get values from config tool based dependency
2017-11-27Add if_found kwarg to subdir().Jussi Pakkanen2-1/+20
2017-11-27Merge pull request #2690 from jsoref/spellingJussi Pakkanen2-2/+2
Spelling
2017-11-26useless: youtu.be referenceJosh Soref1-1/+1
2017-11-26Use new style dependencies in subproject documentation.Jussi Pakkanen1-40/+47
2017-11-26Merge pull request #2676 from jeandet/add_qt_translationsJussi Pakkanen1-3/+11
Add qt translations
2017-11-26spelling: programmingJosh Soref1-1/+1
2017-11-23docs: add documentation for config_tool variable methodDylan Baker2-0/+15
2017-11-23docs: consolidate config-tool based dependenciesDylan Baker1-19/+9
There are currently entries for cups and pcap; but not LLVM, GnuStep, or WxWidgets. Instead of having an entry for each of these just have a single entry for all of them, since the majority of the information is duplicated between them anyway.
2017-11-23[Qt module] Updated Dokerfile, added since 0.44 mention in docAlexis Jeandet1-4/+4
Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>
2017-11-23[Qt module] Added translation files compilation methodAlexis Jeandet1-3/+11
- Added a new compile_translations method since preprocess was already quite full and translations compilation is quite different from ui, qrc, cpp files preprocessing. - Updated translation. - Updated test case. Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>
2017-11-21Added release note mention of embedded Python in MSI packages.Jussi Pakkanen1-0/+9
2017-11-19docs: Add 'cygwin' to reference table for .system()Jon Turney1-0/+1
This aligns this table with the set of values tested for by test case common/140
2017-11-19Documentation: Add note about SCAN_BUILDChristoph Behle1-0/+6
When running ninja scan-build you can use the environment variable SCAN_BUILD to choose the right executable.