Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2017-12-31 | Merge pull request #2757 from xclaesse/pkgconfig | Jussi Pakkanen | 1 | -3/+10 | |
pkgconfig: Allow passing Dependency objects to library(_private) | |||||
2017-12-29 | Release notes for 0.43 are no longer preliminary | GabrĂel ArthĂșr PĂ©tursson | 1 | -1/+1 | |
2017-12-28 | docs: Fix missing syntax highlighting | TingPing | 1 | -4/+8 | |
2017-12-28 | docs: find_program native: is available since 0.43 | Nirbheek Chauhan | 1 | -1/+1 | |
2017-12-26 | Explain test setup a bit more. | Jussi Pakkanen | 1 | -0/+31 | |
2017-12-26 | Merge pull request #2334 from mesonbuild/promotedep | Jussi Pakkanen | 2 | -10/+61 | |
Add functionality to promote nested dependencies to top level. | |||||
2017-12-26 | Reformat and update doc page. | Jussi Pakkanen | 1 | -14/+40 | |
2017-12-26 | add one more blank line at the tail of Disabler.md | Passw | 1 | -1/+1 | |
From http://mesonbuild.com/Manual.html , it seems that `Disabler.md` messes up `Modules.md` | |||||
2017-12-20 | pkgconfig: Update documentation | Xavier Claessens | 1 | -3/+10 | |
2017-12-20 | Created documentation page for code contributions. | Jussi Pakkanen | 3 | -5/+160 | |
2017-12-17 | Add functionality to promote nested dependencies to top level. | Jussi Pakkanen | 2 | -0/+25 | |
2017-12-17 | Allow value 'if-release' for b_ndebug project option. (#1896) | Hemmo Nieminen | 1 | -0/+7 | |
When set, NDEBUG will be automatically defined for for release builds but not for other build types. | |||||
2017-12-17 | make clickable | Shawn Landden | 1 | -1/+1 | |
2017-12-16 | Update Users.md | Shawn Landden | 1 | -1/+1 | |
now only build system of systemd | |||||
2017-12-13 | Enable re-compilation of GNOME gschema files if they have changed. | Michael James Gratton | 1 | -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-13 | Add Geary to the list of users - will use meson for the next release. | Michael James Gratton | 1 | -0/+1 | |
2017-12-12 | docs: Change variable in pkg-config example | Iñigo MartĂnez | 1 | -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-12 | docs: Add documentation to dependency variables | Iñigo MartĂnez | 2 | -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-11 | Fix documentation on disabler behaviour with short circuiting. | Jussi Pakkanen | 2 | -2/+3 | |
2017-12-10 | Updated version number for new release.0.44.0 | Jussi Pakkanen | 15 | -148/+152 | |
2017-12-10 | Merge pull request #2745 from dcbaker/submit/haiku | Jussi Pakkanen | 1 | -1/+2 | |
small fixes for haiku | |||||
2017-12-09 | Touch up install_dir() documentation | Ernestas Kulik | 1 | -5/+1 | |
It no longer removes the target tree before copying files. | |||||
2017-12-09 | Fix typo in release note snippet for get_unquoted | Jon Turney | 1 | -2/+2 | |
Grammar is still a bit fractured, but I'm not entirely sure what it's trying to say. | |||||
2017-12-07 | docs: Add haiku to reference table | Dylan Baker | 1 | -1/+2 | |
2017-12-05 | Merge pull request #2731 from mesonbuild/disabler | Jussi Pakkanen | 4 | -0/+112 | |
Created disabler object type | |||||
2017-12-05 | Added documentation for disabler objects. | Jussi Pakkanen | 4 | -0/+112 | |
2017-12-05 | Document and improve not-found dependency objects | Jon Turney | 1 | -4/+8 | |
Document dependency('', required:false) usage. Avoid emitting 'Dependency found: NO'. | |||||
2017-12-03 | Minor fixes. | Jussi Pakkanen | 1 | -1/+1 | |
2017-12-03 | String arguments can permit arbitrary string values | Jussi Pakkanen | 2 | -17/+45 | |
by leaving out the choices keyword. | |||||
2017-12-02 | Reformatted and fixed running doc. | Jussi Pakkanen | 1 | -22/+80 | |
2017-12-02 | Merge pull request #2390 from dcbaker/submit/options-list | Jussi Pakkanen | 2 | -9/+45 | |
Add an array type to user options | |||||
2017-11-30 | cross: Implement support for loading cross files from system paths | Dylan Baker | 2 | -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-29 | Add new array type option | Dylan Baker | 2 | -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-29 | Merge pull request #2701 from dcbaker/submit/better-llvm-docs | Jussi Pakkanen | 1 | -0/+29 | |
Minor LLVM dependency cleanups for the next release | |||||
2017-11-29 | docs: note when warning() was added | Zbigniew JÄdrzejewski-Szmek | 1 | -0/+2 | |
Followup for 1540e615f13503722f1067c693f3d394218cbd9e. | |||||
2017-11-28 | docs: Add better documentation of the LLVM dependency | Dylan Baker | 1 | -0/+29 | |
2017-11-28 | Merge pull request #2512 from dcbaker/wip/config-tool-variables | Jussi Pakkanen | 3 | -19/+24 | |
Add method to get values from config tool based dependency | |||||
2017-11-27 | Add if_found kwarg to subdir(). | Jussi Pakkanen | 2 | -1/+20 | |
2017-11-27 | Merge pull request #2690 from jsoref/spelling | Jussi Pakkanen | 2 | -2/+2 | |
Spelling | |||||
2017-11-26 | useless: youtu.be reference | Josh Soref | 1 | -1/+1 | |
2017-11-26 | Use new style dependencies in subproject documentation. | Jussi Pakkanen | 1 | -40/+47 | |
2017-11-26 | Merge pull request #2676 from jeandet/add_qt_translations | Jussi Pakkanen | 1 | -3/+11 | |
Add qt translations | |||||
2017-11-26 | spelling: programming | Josh Soref | 1 | -1/+1 | |
2017-11-23 | docs: add documentation for config_tool variable method | Dylan Baker | 2 | -0/+15 | |
2017-11-23 | docs: consolidate config-tool based dependencies | Dylan Baker | 1 | -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 doc | Alexis Jeandet | 1 | -4/+4 | |
Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org> | |||||
2017-11-23 | [Qt module] Added translation files compilation method | Alexis Jeandet | 1 | -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-21 | Added release note mention of embedded Python in MSI packages. | Jussi Pakkanen | 1 | -0/+9 | |
2017-11-19 | docs: Add 'cygwin' to reference table for .system() | Jon Turney | 1 | -0/+1 | |
This aligns this table with the set of values tested for by test case common/140 | |||||
2017-11-19 | Documentation: Add note about SCAN_BUILD | Christoph Behle | 1 | -0/+6 | |
When running ninja scan-build you can use the environment variable SCAN_BUILD to choose the right executable. |