Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | | Fix typo | cagatay-y | 2017-05-21 | 1 | -1/+1 | |
| | | ||||||
* | | Change repeated word | cagatay-y | 2017-05-21 | 1 | -1/+1 | |
| | | ||||||
* | | Remove extra temporary file from docs. | Elliott Sales de Andrade | 2017-05-21 | 1 | -29/+0 | |
| | | ||||||
* | | Updated list of users and minor sitemap cleanup. | Jussi Pakkanen | 2017-05-20 | 1 | -1/+4 | |
|/ | ||||||
* | vala: Fix typos and cover dependencies without pkg-config file in docs | Guillaume Poirier-Morency | 2017-05-13 | 1 | -3/+13 | |
| | ||||||
* | vala: Cover 'find_library' usage and be more explicit for default install ↵ | Guillaume Poirier-Morency | 2017-05-13 | 1 | -1/+13 | |
| | | | | directories in docs | |||||
* | Merged rust_args branch. | Jussi Pakkanen | 2017-05-13 | 1 | -0/+3 | |
|\ | ||||||
| * | docs: Add rust_args entry to release notes | Patrick Griffis | 2017-05-08 | 1 | -0/+4 | |
| | | ||||||
* | | Merge pull request #1669 from mesonbuild/dist | Jussi Pakkanen | 2017-05-12 | 2 | -0/+30 | |
|\ \ | | | | | | | Create a dist target | |||||
| * | | Add test and release notes. | Jussi Pakkanen | 2017-05-12 | 1 | -0/+15 | |
| | | | ||||||
| * | | Initialise submodules. | Jussi Pakkanen | 2017-05-11 | 1 | -0/+15 | |
| | | | ||||||
* | | | Make vs_module_defs: do something for gcc on Windows as well | Jon Turney | 2017-05-12 | 1 | -1/+1 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Module definition files may be useful when building with gcc on Windows also (e.g. if the existing build uses them, if exports are aliased, if we were retro enough to export by ordinal, etc.) Add the .def file to the link command line when using gcc on Windows Run the appropriate windows tests irrespective of compiler. | |||||
* | | | Merge pull request #1735 from dcbaker/list-of-files | Jussi Pakkanen | 2017-05-12 | 1 | -3/+3 | |
|\ \ \ | | | | | | | | | Allow passing a list of Files to CustomTarget. Closes #1720 | |||||
| * | | | Allow passing a list of Files to CustomTarget. Closes #1720 | Dylan Baker | 2017-05-11 | 1 | -1/+1 | |
| | | | | ||||||
| * | | | Use flatten for link targets. Fixes #1764 | Dylan Baker | 2017-05-11 | 1 | -2/+2 | |
| |/ / | ||||||
* | | | docs: make the required argument for find_program stick out more | Peter Hutterer | 2017-05-11 | 1 | -4/+6 | |
| | | | ||||||
* | | | Update Compiler-properties.md | liberforce | 2017-05-11 | 1 | -6/+6 | |
|/ / | | | | | Fix table formatting | |||||
* | | Merge pull request #1761 from keszybz/docs | Jussi Pakkanen | 2017-05-11 | 1 | -30/+32 | |
|\ \ | | | | | | | Some simple doc fixes | |||||
| * | | docs: add puncuation to description of compiler object functions | Zbigniew Jędrzejewski-Szmek | 2017-05-09 | 1 | -17/+17 | |
| | | | ||||||
| * | | docs: mention $DESTDIR in add_install_script description, add punctuation | Zbigniew Jędrzejewski-Szmek | 2017-05-09 | 1 | -13/+15 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Although not stricly necessary, it is good to mention $DESTDIR in the explanation for add_install_script, since it might not be obvious for the user that it is available. Also add punctuation to be consistent. v2: - fix "witht" typo - reword $DESTDIR description to say that it is inherited from the environment - also describe $MESONINTROSPECT | |||||
| * | | docs: add hyperlinks and a short description of unity builds | Zbigniew Jędrzejewski-Szmek | 2017-05-08 | 1 | -2/+2 | |
| |/ | | | | | | | At first I thought this is something about Ubuntu ;) | |||||
* | | Now cracks a noble heart. Good night sweet prince: | Jussi Pakkanen | 2017-05-11 | 1 | -1/+1 | |
| | | | | | | | | And flights of angels sing thee to thy rest! | |||||
* | | Update Running-Meson.md | liberforce | 2017-05-11 | 1 | -1/+1 | |
| | | | | | | Fix parameter escapement | |||||
* | | Update Syntax.md | liberforce | 2017-05-11 | 1 | -1/+1 | |
| | | | | | | Fix variable name | |||||
* | | pkgconfig: add suppport for custom variables during generation | Peter Hutterer | 2017-05-11 | 2 | -0/+15 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Usage: pkgconfig.generate( ... description : 'A library with custom variables.', variables : ['foo=bar', 'datadir=${prefix}/data'] ) The variables 'prefix', 'libdir' and 'includedir' are reserved, meson will fail with an error message. Variables can reference each other with the pkgconfig notation, e.g. variables : ['datadir=${prefix}/data', 'otherdatadir=${datadir}/other'] meson does not check this for correctness or that the referenced variable exists, we merely keep the same order as specified. | |||||
* | | docs: how to make find_program() search additional directories | Tim-Philipp Müller | 2017-05-09 | 1 | -0/+10 | |
|/ | | | | Fixes #1702 | |||||
* | Allow link_depends to take strings, Files or generated objects. Closes #1172 | Dylan Baker | 2017-05-08 | 1 | -1/+1 | |
| | | | | | | | | | | | | | | | | | | | | | | Currently only strings can be passed to the link_depends argument of executable and *library, which solves many cases, but not every one. This patch allows generated sources and Files to be passed as well. On the implementation side, it uses a helper method to keep the more complex logic separated from the __init__ method. This also requires that Targets set their link_depends paths as Files, and the backend is responsible for converting to strings when it wants them. This adds tests for the following cases: - Using a file in a subdir - Using a configure_file as an input - Using a custom_target as an input It does not support using a generator as an input, since currently that would require calling the generator twice, once for the -Wl argument, and once for the link_depends. Also updates the docs. | |||||
* | Add support for @CURRENT_SOURCE_DIR@ in generator arguments | Alberto Aguirre | 2017-05-08 | 1 | -0/+1 | |
| | | | | | | | | | | | | | Allow users to specify @CURRENT_SOURCE_DIR@ in generator arguments to specify the current target source directory. This is useful when creating protobuf generator objects in sub-directories because protoc will then generate files in the expected location. Fixes #1622. Remove stray semicolon Update documentation | |||||
* | docs: make project(license:) a separate bullet point | Jon Turney | 2017-05-08 | 1 | -1/+3 | |
| | ||||||
* | Updated gnome module command | Günther Wutz | 2017-05-07 | 1 | -1/+1 | |
| | ||||||
* | Merge pull request #1657 from QuLogic/ninja-escape | Jussi Pakkanen | 2017-05-06 | 1 | -0/+7 | |
|\ | | | | | ninja: Fix quoting newlines and $ | |||||
| * | Add release note about ninja character escaping. | Elliott Sales de Andrade | 2017-05-05 | 1 | -0/+7 | |
| | | ||||||
* | | Compiler-properties.md: fix typo | Mathieu Duponchelle | 2017-05-05 | 1 | -1/+1 | |
| | | ||||||
* | | Fix missing backticks | Sven Steinbauer | 2017-05-05 | 1 | -0/+1 | |
|/ | ||||||
* | Default to project_version() in vcs_tag fallback | Peter Hutterer | 2017-05-05 | 2 | -1/+6 | |
| | ||||||
* | docs: document additional args for vcs_tag | Peter Hutterer | 2017-05-05 | 1 | -5/+7 | |
| | | | | Supported as of 223596d7bf8ab9b839e0031022c132a3ccd4fd1d | |||||
* | docs: clarify that vcs_tag output can be used as source | Peter Hutterer | 2017-05-05 | 1 | -1/+1 | |
| | | | | | "you should put in your main program" is confusing, "that can be used as source" is slightly better. | |||||
* | Merge pull request #1621 from dcbaker/llvm-dep | Jussi Pakkanen | 2017-05-04 | 1 | -0/+4 | |
|\ | | | | | RFC: Add dependency for LLVM. Fixes #1611 | |||||
| * | Add dependency for LLVM. Fixes #1611 | Dylan Baker | 2017-05-03 | 1 | -0/+4 | |
| | | | | | | | | | | | | | | This adds a depdendncy wrapper for llvm-config based on the wxwidgets dependency. IT handles libs, version, include dir, and the llvm unique concept of components. These components are individual pieces of the LLVM library that may or may not be available depending on the platform. | |||||
* | | Use American English - 'ise' -> 'ize' where applicable | Peter Hutterer | 2017-05-04 | 6 | -6/+6 | |
| | | ||||||
* | | Use American English: behaviour -> behavior | Peter Hutterer | 2017-05-04 | 5 | -9/+9 | |
| | | ||||||
* | | Update FAQ.md: meson is not elementary particle | Chiu Yue Chun | 2017-05-04 | 1 | -1/+1 | |
| | | | | | | | | meson is a hadron, more specifically, hadrons that consists of a quark and a anti-quark. So, it is a composite particle rather than elementary one. | |||||
* | | docs: Update SharedLibrary vs_module_defs accepts a File object | Dylan Baker | 2017-05-04 | 1 | -1/+1 | |
| | | ||||||
* | | doc: Replace kwarg with keyword argument. | Elliott Sales de Andrade | 2017-05-03 | 2 | -14/+14 | |
| | | | | | | | | | | This abbreviation is a Python-ism that is not really clear to those out of the loop. | |||||
* | | doc: Use https links wherever possible. | Elliott Sales de Andrade | 2017-05-03 | 15 | -22/+22 | |
| | | ||||||
* | | doc: Fix broken Linux binary page. | Elliott Sales de Andrade | 2017-05-03 | 1 | -16/+16 | |
| | | | | | | | | All the dashes were replaced by spaces. | |||||
* | | doc: Don't use root-prompt in wraptool examples. | Elliott Sales de Andrade | 2017-05-03 | 1 | -7/+7 | |
| | | | | | | | | A `#` is the root-prompt, whereas `$` is the user-prompt. | |||||
* | | doc: Fix several minor typos. | Elliott Sales de Andrade | 2017-05-03 | 18 | -23/+23 | |
| | | ||||||
* | | doc: Capitalize things more consistently. | Elliott Sales de Andrade | 2017-05-03 | 28 | -67/+67 | |
| | | | | | | | | | | Upper or lower case depending on the official spelling, or the more consistent usage. | |||||
* | | doc: Remove duplicate design rationale page. | Elliott Sales de Andrade | 2017-05-03 | 1 | -122/+0 | |
|/ |