aboutsummaryrefslogtreecommitdiff
path: root/docs
AgeCommit message (Collapse)AuthorFilesLines
2017-05-22Merge pull request #1664 from QuLogic/codecovJussi Pakkanen1-1/+6
Enable code coverage
2017-05-22Update the Frida URL and description.Ole André Vadla RavnÄs1-1/+1
2017-05-21Add coverage export for tests.Elliott Sales de Andrade1-1/+6
2017-05-21Merge pull request #1792 from jon-turney/custom_target_vs_module_defsJussi Pakkanen1-1/+1
Allow vs_module_defs to use a custom_target
2017-05-21Update linkcagatay-y1-1/+1
Gcovr homepage is moved. Updated the link to the new URL.
2017-05-21Merge pull request #1823 from jon-turney/masterJussi Pakkanen1-21/+28
Improve documentation of build target and custom target objects
2017-05-21Fix typocagatay-y1-1/+1
2017-05-21Change repeated wordcagatay-y1-1/+1
2017-05-21Remove extra temporary file from docs.Elliott Sales de Andrade1-29/+0
2017-05-20Updated list of users and minor sitemap cleanup.Jussi Pakkanen2-2/+5
2017-05-19docs: The return value of executable() is a builttarget object.Jon Turney1-1/+1
Make executable() consistent with all other functions returning a buildtarget, it's return type is a buildtarget object.
2017-05-19docs: Document the object returned by custom_targetJon Turney1-2/+10
2017-05-19docs: Correct list of things that are a build target to include shared_moduleJon Turney1-1/+1
2017-05-19docs: Move "build target object" from "build-in objects" to "returned objects"Jon Turney1-18/+17
Also move "run result" object so objects are sorted alphabetically
2017-05-16Allow vs_module_defs to use a custom_targetJon Turney1-1/+1
Allow vs_module_defs to use a custom_target Add a test and update documentation
2017-05-13vala: Fix typos and cover dependencies without pkg-config file in docsGuillaume Poirier-Morency1-3/+13
2017-05-13vala: Cover 'find_library' usage and be more explicit for default install ↔Guillaume Poirier-Morency1-1/+13
directories in docs
2017-05-13Merged rust_args branch.Jussi Pakkanen1-0/+3
2017-05-12Merge pull request #1669 from mesonbuild/distJussi Pakkanen3-0/+31
Create a dist target
2017-05-12Make vs_module_defs: do something for gcc on Windows as wellJon Turney1-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.
2017-05-12Merge pull request #1735 from dcbaker/list-of-filesJussi Pakkanen1-3/+3
Allow passing a list of Files to CustomTarget. Closes #1720
2017-05-12Add test and release notes.Jussi Pakkanen1-0/+15
2017-05-11docs: make the required argument for find_program stick out morePeter Hutterer1-4/+6
2017-05-11Update Compiler-properties.mdliberforce1-6/+6
Fix table formatting
2017-05-11Allow passing a list of Files to CustomTarget. Closes #1720Dylan Baker1-1/+1
2017-05-11Use flatten for link targets. Fixes #1764Dylan Baker1-2/+2
2017-05-11Initialise submodules.Jussi Pakkanen2-0/+16
2017-05-11Merge pull request #1761 from keszybz/docsJussi Pakkanen2-31/+33
Some simple doc fixes
2017-05-11Now cracks a noble heart. Good night sweet prince:Jussi Pakkanen1-1/+1
And flights of angels sing thee to thy rest!
2017-05-11Update Running-Meson.mdliberforce1-1/+1
Fix parameter escapement
2017-05-11Update Syntax.mdliberforce1-1/+1
Fix variable name
2017-05-11pkgconfig: add suppport for custom variables during generationPeter Hutterer2-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.
2017-05-09docs: add puncuation to description of compiler object functionsZbigniew Jędrzejewski-Szmek1-17/+17
2017-05-09docs: mention $DESTDIR in add_install_script description, add punctuationZbigniew Jędrzejewski-Szmek1-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
2017-05-09docs: how to make find_program() search additional directoriesTim-Philipp MĂŒller1-0/+10
Fixes #1702
2017-05-08docs: add hyperlinks and a short description of unity buildsZbigniew Jędrzejewski-Szmek1-2/+2
At first I thought this is something about Ubuntu ;)
2017-05-08docs: clarify where hotdoc should be runZbigniew Jędrzejewski-Szmek1-1/+1
2017-05-08docs: Add rust_args entry to release notesPatrick Griffis1-0/+4
2017-05-08Allow link_depends to take strings, Files or generated objects. Closes #1172Dylan Baker1-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.
2017-05-08Add support for @CURRENT_SOURCE_DIR@ in generator argumentsAlberto Aguirre1-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
2017-05-08docs: make project(license:) a separate bullet pointJon Turney1-1/+3
2017-05-07Updated gnome module commandGĂŒnther Wutz1-1/+1
2017-05-06Merge pull request #1657 from QuLogic/ninja-escapeJussi Pakkanen1-0/+7
ninja: Fix quoting newlines and $
2017-05-05Add release note about ninja character escaping.Elliott Sales de Andrade1-0/+7
2017-05-05Compiler-properties.md: fix typoMathieu Duponchelle1-1/+1
2017-05-05Fix missing backticksSven Steinbauer1-0/+1
2017-05-05Default to project_version() in vcs_tag fallbackPeter Hutterer2-1/+6
2017-05-05docs: document additional args for vcs_tagPeter Hutterer1-5/+7
Supported as of 223596d7bf8ab9b839e0031022c132a3ccd4fd1d
2017-05-05docs: clarify that vcs_tag output can be used as sourcePeter Hutterer1-1/+1
"you should put in your main program" is confusing, "that can be used as source" is slightly better.
2017-05-04Merge pull request #1621 from dcbaker/llvm-depJussi Pakkanen1-0/+4
RFC: Add dependency for LLVM. Fixes #1611