Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2019-03-14 | Add libcamera to Users.md [skip ci] | Kieran Bingham | 1 | -0/+1 | |
Add the libcamera project as a user of Meson. | |||||
2019-03-14 | docs | Michael Hirsch, Ph.D | 1 | -0/+12 | |
2019-03-13 | docs/Users: add Knot Resolver to projects | Tomas Krizek | 1 | -0/+1 | |
2019-03-13 | docs/Users: fix sort order (Kiwix libraries) | Tomas Krizek | 1 | -1/+1 | |
2019-03-11 | Add static as keyword to find_library | Niklas Claesson | 2 | -1/+9 | |
2019-03-11 | docs: Typos and formatting in the 0.50 release notes [skip ci] | Nirbheek Chauhan | 1 | -13/+14 | |
2019-03-11 | docs: Add missing closing quote [skip ci] | Thomas DeRensis | 1 | -1/+1 | |
2019-03-10 | docs: fix typo in link anchor [skip ci] | Will Thompson | 1 | -1/+1 | |
2019-03-10 | Update everything for new release.0.50.0 | Jussi Pakkanen | 30 | -293/+336 | |
2019-03-10 | Update Users.md [skip ci] | Amit D | 1 | -15/+27 | |
2019-03-10 | Generate release notes from snippets automatically. [skip ci] | Jussi Pakkanen | 4 | -26/+65 | |
2019-03-09 | pkgconfig.generate: add FeatureNew and documentation for implict version | Eli Schwartz | 1 | -1/+1 | |
The documentation for this change was left out of its implementation in commit b4aee4675afd9f9f4a36aea628bab4249d7addbc and was later documented in commit f831c05b553d876a08dcf46478161b60b4e693c4 as if it had always existed. | |||||
2019-03-09 | docs: Add snippet for python module path method [skip ci] | Dylan Baker | 1 | -0/+5 | |
Which somehow wasn't included in the original pull request. | |||||
2019-03-09 | docs: document that the .path() method for Python is new in 0.50 [skip ci] | Dylan Baker | 1 | -0/+11 | |
Since this method was not included in 0.46-00.49 we should document that. | |||||
2019-03-06 | Update Users.md [skip ci] | Amit D | 1 | -0/+10 | |
2019-03-04 | Merge pull request #4992 from mensinda/rwCLI | Jussi Pakkanen | 3 | -0/+255 | |
rewriter: Add a CLI and docs | |||||
2019-03-04 | docs: Define sorting in Style-guide.md [skip ci] | Daniel Mensinger | 1 | -0/+32 | |
2019-03-04 | rewriter: Require '/' for the project ID | Daniel Mensinger | 1 | -2/+2 | |
2019-03-04 | rewriter: Mark the CLI as experimental | Daniel Mensinger | 1 | -0/+6 | |
2019-03-04 | rewriter: Mark the info output as experimental | Daniel Mensinger | 1 | -2/+1 | |
2019-03-04 | rewriter: Document info operation | Daniel Mensinger | 1 | -0/+10 | |
2019-03-04 | rewriter: Handle duplicate target | Daniel Mensinger | 1 | -1/+2 | |
2019-03-04 | rewriter: Updated docs | Daniel Mensinger | 1 | -3/+3 | |
2019-03-04 | rewriter: Remove command alias | Daniel Mensinger | 1 | -4/+3 | |
2019-03-04 | rewriter: Renamed tgt_{add,rm} --> target_{add,rm} | Daniel Mensinger | 1 | -1/+1 | |
2019-03-04 | rewriter: Fixed docs. | Daniel Mensinger | 1 | -2/+40 | |
2019-03-04 | rewriter: Enforce an empty project ID string | Daniel Mensinger | 1 | -1/+1 | |
2019-03-04 | rewriter: Added docs | Daniel Mensinger | 3 | -0/+202 | |
2019-03-04 | Add table for dependency method types. [skip ci] | Jussi Pakkanen | 1 | -0/+15 | |
2019-03-03 | mintro: Renamed --dependencies --> --scan-dependencies | Daniel Mensinger | 2 | -13/+7 | |
2019-03-03 | Added docs | Daniel Mensinger | 3 | -0/+107 | |
2019-03-02 | mtest: implement TAP parsing | Paolo Bonzini | 2 | -6/+10 | |
This provides an initial support for parsing TAP output. It detects failures and skipped tests without relying on exit code, as well as early termination of the test due to an error or a crash. For now, subtests are not recorded in the TestRun object. However, because the TAP output goes on stdout, it is printed by --print-errorlogs when a test does not behave as expected. Handling subtests as TestRuns, and serializing them to JSON, can be added later. The parser was written specifically for Meson, and comes with its own test suite. Fixes #2923. | |||||
2019-03-02 | mtest: add support for hard errors | Paolo Bonzini | 1 | -1/+3 | |
Hard errors also come from the GNU Automake test protocol. They happen when e.g., the set-up of a test case scenario fails, or when some other unexpected or highly undesirable condition is encountered. TAP will use them for parse errors too. Add them to the exitcode protocol first. | |||||
2019-03-02 | interpreter: add "protocol" kwarg to test | Paolo Bonzini | 1 | -4/+7 | |
This is the first step towards adding support for TAP. | |||||
2019-03-01 | mintro: Add subproject_dir to --projectinfo | Daniel Schulte | 1 | -0/+4 | |
2019-03-01 | mintro: Add name of subproject the target is contained in to --target output | Daniel Schulte | 2 | -0/+5 | |
2019-03-01 | auto generate msvc pch source file if none is provided by the user | Nicolas Schneider | 1 | -1/+4 | |
2019-02-28 | Revert "Improve declare_dependency() example in Generating-sources.md [skip ci]" | Jussi Pakkanen | 1 | -6/+1 | |
This reverts commit 67a01c8d7fc8a4e1c237329ecad4af162186b4ba. | |||||
2019-02-28 | add NetCDF | Michael Hirsch, Ph.D | 2 | -1/+23 | |
2019-02-26 | Improve declare_dependency() example in Generating-sources.md [skip ci] | Martin Ejdestig | 1 | -1/+6 | |
By using private_dir_include() instead of enumerating headers in sources of declare_dependency. Much more convenient, especially when there are many headers. Found out about this by reading #4638. It is not documented anywhere as far as I can tell. | |||||
2019-02-25 | docs: compiled() only works with compiler.run() results [skip ci] | emersion | 1 | -1/+2 | |
2019-02-24 | [skip ci] Update the CUDA module documentation. | Olexa Bilaniuk | 1 | -1/+9 | |
2019-02-19 | Clarify in docs the argument types extract_objects() accepts [skip ci] | Maarten ter Huurne | 1 | -5/+7 | |
2019-02-19 | Allow File arguments in extract_objects() arguments | Maarten ter Huurne | 1 | -0/+4 | |
Passed strings are converted to Files, but passing a File directly wasn't supported yet. | |||||
2019-02-19 | Add warning level zero | jml1795 | 3 | -2/+5 | |
2019-02-18 | Fix console log from generator with multiple output nodes | jml1795 | 1 | -0/+3 | |
2019-02-18 | use compile_args instead of compiler_args [skip ci] | Jonathan Poelen | 1 | -2/+2 | |
2019-02-18 | Correct pkg-config method in Qt dependency docs [skip ci] | Florian Märkl | 1 | -1/+1 | |
2019-02-13 | Fortran 2008/2018 Coarray support | Michael Hirsch, Ph.D | 2 | -0/+11 | |
2019-02-13 | New logo and license text. Closes #4921. [skip ci] | Jussi Pakkanen | 3 | -2/+13 | |