summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2017-05-22Update the Frida URL and description.Ole André Vadla Ravnås
2017-05-21Fix cross environment pollution.Ole André Vadla Ravnås
Environment variables like CFLAGS and LDFLAGS should not affect the cross environment. Fixes #1772
2017-05-21Merge hdiutil fix branch.Jussi Pakkanen
2017-05-21Re-add comment about hdiutil outputStefan Graupner
2017-05-21Change hdiutil detachStefan Graupner
The detach now always fetches the correct mountpoint.
2017-05-21Create helper function for a rmtree that works reliably on Windows.Jussi Pakkanen
2017-05-21Merge pull request #1792 from jon-turney/custom_target_vs_module_defsJussi Pakkanen
Allow vs_module_defs to use a custom_target
2017-05-21cross: Fix host_machine.system in the example iphone cross config.Ole André Vadla Ravnås
2017-05-21Update linkcagatay-y
Gcovr homepage is moved. Updated the link to the new URL.
2017-05-21Merge pull request #1823 from jon-turney/masterJussi Pakkanen
Improve documentation of build target and custom target objects
2017-05-21Fix typocagatay-y
2017-05-21Change repeated wordcagatay-y
2017-05-21Ignore built docs directory.Elliott Sales de Andrade
2017-05-21Remove extra temporary file from docs.Elliott Sales de Andrade
2017-05-20fix lookup of boost modules when cross-compiling on osxGoncalo Carvalho
2017-05-20Updated list of users and minor sitemap cleanup.Jussi Pakkanen
2017-05-19docs: The return value of executable() is a builttarget object.Jon Turney
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 Turney
2017-05-19docs: Correct list of things that are a build target to include shared_moduleJon Turney
2017-05-19docs: Move "build target object" from "build-in objects" to "returned objects"Jon Turney
Also move "run result" object so objects are sorted alphabetically
2017-05-18Merge pull request #1810 from QuLogic/pycharm-warningsJussi Pakkanen
Fix various warnings found in PyCharm
2017-05-18Skip unittests that request it rather than mark them as failed. Closes #1804.Jussi Pakkanen
2017-05-17Don't allow non-equality comparisons across types.Elliott Sales de Andrade
2017-05-17Only allow equality comparisons for non-elementary types.Elliott Sales de Andrade
2017-05-17Remove extra casts on InterpreterBase.evaluate_statement.Elliott Sales de Andrade
The result of this method is always a "native" object, and code coverage (plus a manual inspection) shows that this conversion is never done.
2017-05-17Delete the correct directory in dist check.Elliott Sales de Andrade
2017-05-17Add super call in RunTargetHolder.Elliott Sales de Andrade
2017-05-17Remove dead code paths.Elliott Sales de Andrade
2017-05-17Add missing asserts in unit tests.Elliott Sales de Andrade
2017-05-17Handle required `ExtraFrameworkDependency`s.Elliott Sales de Andrade
2017-05-17Fix undefined variables/methods.Elliott Sales de Andrade
2017-05-17Rearrange trys to avoid possible undefined vars.Elliott Sales de Andrade
2017-05-17Avoid shadowing outer variables.Elliott Sales de Andrade
Though actually, just rename them into something clearer.
2017-05-17Remove unused variables.Elliott Sales de Andrade
2017-05-17Use more direct dictionary literals.Elliott Sales de Andrade
2017-05-17Remove unnecessary __init__ methods.Elliott Sales de Andrade
2017-05-17Remove unused imports.Elliott Sales de Andrade
2017-05-16Add a test for link_depends using a custom targetJon Turney
2017-05-16Allow vs_module_defs to use a custom_targetJon Turney
Allow vs_module_defs to use a custom_target Add a test and update documentation
2017-05-15mesonconf: reorder output columnsYasushi SHOJI
mesonconf prints build dir information in the order of 'Option' 'Description' 'Current Value' and, optionally, 'Possible Value'. The Description tends to be longer and push the following values far right, sometimes way far than fits in the full screen size of a terminal on a FullHD monitor. Experienced users know which options they want to change without looking at the description string however they need to check the current values for sure. This patch moves the description to the last column. Now mesonconf prints options in the following order: 'Option' 'Current Value' 'Possible Value' 'Description' To implement this, mainly print_aligned() is modified. The second argument of the function is changed from - array of array of string to - array of dict with 'name', 'descr', 'value', and 'choices, which maps to 'option', 'description', 'current value' and 'possible values', respectively. Since the position of the possible values are moved before its description, the presence and the length of it affects header as well as the following description. Thus, we cal curate it before printing the header. To avoid re-calculation, we keep string version of the values and flattened version of the possible values _in the given array_, which means that now the print_aligned() function modify the the given array. The current callers do not use the passing array. So there should be no bad effects.
2017-05-14gmockdependency: find libraries using the compilerLars Persson
Use the compiler object to find the gmock library. Fixes following cases: - cross compiling looked in host library paths - static libgmock was not supported Change-Id: Ie3912b8b4dd3b71d7a5ae2adae7295d3b685fddf
2017-05-14gtestdependency: find libraries using the compilerLars Persson
Use the compiler object to find gtest libraries. Fixes following cases: - cross compiling looked in host library paths - static libgtest was not supported Change-Id: If42cdf873db38676b99adca60752f652aff097a2
2017-05-14Merge pull request #1775 from mesonbuild/covupdateJussi Pakkanen
Better coverage report
2017-05-14ninja: Deduplicate dependent vapisOle André Vadla Ravnås
The Vala compiler does not like being fed the same .vapi multiple times.
2017-05-14Fix fortran tests without test() callsBálint Aradi
2017-05-13vala: Fix typos and cover dependencies without pkg-config file in docsGuillaume Poirier-Morency
2017-05-13vala: Cover 'find_library' usage and be more explicit for default install ↵Guillaume Poirier-Morency
directories in docs
2017-05-13Skip ObjectiveC/C++ tests if ObjC compiler is not availableTim-Philipp Müller
2017-05-13Strip system directories and show coverage for files not executed at all. ↵Jussi Pakkanen
Closes #1721.
2017-05-13Merge pull request #1788 from aradi/fix-fortran-scanJussi Pakkanen
Fix scanning of Fortran sources created during configuration