aboutsummaryrefslogtreecommitdiff
path: root/docs
AgeCommit message (Collapse)AuthorFilesLines
2017-10-29Merge pull request #2529 from leiflm/qt5-add-moc-extra-arguments-keywordJussi Pakkanen2-6/+19
Qt5-Module: Add `moc_extra_arguments` keyword support.
2017-10-28Make sysconfdir, localstatedir and sharedstatedir defaults depend on prefixJon Turney1-0/+10
Rather than requiring a bit of boilerplate in every meson.build, which is only documented in a comment in mesoncore.py, use sensible defaults for sysconfdir, localstatedir and sharedstatedir depending on the prefix. Fixes #1637 v2: For clarity, give get_builtin_option_default() a noneIfSuppress argument, rather than overloading prefix '' and None with special meanings.
2017-10-27documentation: adds new keyword usage to the given example.Leif Middelschulte1-1/+3
2017-10-27adds "since"-note for the new keyword to the documentationLeif Middelschulte1-1/+1
2017-10-27updates the documentation to follow the list-style to explain arguments.Leif Middelschulte1-4/+7
As per to @jon-turney's and @jpakanne's suggestion [0], this commit changes the "prosa" documentation to a list-style one. [0] https://github.com/mesonbuild/meson/pull/2529#pullrequestreview-72265697
2017-10-26docs: add pkgconfig to cross file exampleMike Gilbert1-0/+1
2017-10-25Qt5-Module: Add `moc_extra_arguments` keyword support.Leif Middelschulte2-5/+13
This commit adds support for an additional `moc_extra_arguments` keyword. It becomes especially handy, when `moc`-ed sources conditionally provide `slots`, depending on compile time macros (i.e. defines).
2017-10-25docs: Add a snippet for LLVM static linking supportDylan Baker1-0/+8
2017-10-24Fix inconsistent header levelsJay Sherby1-2/+2
2017-10-24docs: Fix date being interpreted as an ordered list itemLuis Menina1-2/+2
2017-10-23Update references from mesonconf to meson configureKevin Anderson5-8/+8
Fixes #2372
2017-10-23docs: Remove unnecessary trailing whitespacesLuis Menina5-14/+14
2017-10-23docs: Markdown headers don't need trailing hash signsLuis Menina8-25/+25
This is a cosmetic change because github seems to interpret those correctly. Nonetheless, it adds unnecessary noise and makes people modifying the pages think it might be needed. See syntax guide at https://guides.github.com/features/mastering-markdown/
2017-10-23docs: Fix markdown in 'design rationale' pageLuis Menina1-8/+8
2017-10-23Fix invalid example in Syntax.mdJonas Platte1-1/+1
2017-10-13Arguments, not flags.Jussi Pakkanen1-1/+1
2017-10-12Link to MesonPorting is not rendered as URLCarlos Garcés1-1/+1
2017-10-11Typo and grammar fixes for 0.43.0 release noteJon Turney1-2/+2
2017-10-08docs: Improve code snippets in release notesTingPing1-38/+50
2017-10-08Added release note page for 0.44.Jussi Pakkanen1-0/+16
2017-10-08Collated release note snippets to main file.Jussi Pakkanen10-104/+103
2017-10-08gnome: g-ir-scanner accepts multiple symbol-prefix argumentsRico Tzschichholz1-1/+2
2017-10-05docs: Use consistent whitespace for gnome kwargsTingPing1-25/+0
2017-10-04Update to not use deprecated mesonconfDavid Strauss1-1/+1
2017-10-04docs: Prettier screenshot in tutorialJan Niklas Hasse1-0/+0
2017-10-03Update Reference-manual.mdNirbheek Chauhan1-1/+2
2017-10-03Update Reference-manual.mdNirbheek Chauhan1-4/+11
Fix documentation breakage from https://github.com/mesonbuild/meson/pull/2415
2017-10-03Fix typo and clarify library documentationxarkes1-2/+3
2017-10-02Merge pull request #2397 from mesonbuild/prebuiltJussi Pakkanen1-0/+20
Better support for prebuilt shared libs
2017-10-02docs: Fix typoMohammed Sadiq1-1/+1
Remove the quote before parens
2017-10-02Add rpath entries for all found libraries outside of system libraries.Jussi Pakkanen1-4/+9
2017-10-02Merge pull request #2282 from NickeZ/improve-boostJussi Pakkanen2-2/+23
Improve boost
2017-10-01gnome: Add header kwarg to generate_gir()Patrick Griffis1-0/+4
This is a commonly used flag so lets make it more obvious.
2017-10-01Added include directory argument for Qt's Moc which is needed to build plugins.Alexis Jeandet1-3/+5
Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>
2017-10-01Boost: Improve search algorithmNiklas Claesson2-2/+23
The new implementation will correctly pick boost from 3 possible locations on windows and two locations on posix compatible OSs. The new search algorithm also differentiates between debug and release builds of Boost and multi or single threading builds. It was also decided to map "Meson modules" to Boost software libraries and not Boost modules since it there are a lot of options regarding linking. Some modules can even be used either as headers-only or with dynamic linking. This commit also fixes a bug that prevented header-only use on Windows. Fixes: #2274 #2239 #1803 #669
2017-10-01Merge pull request #2373 from leiflm/svn-wrapsJussi Pakkanen1-0/+4
introduce svn wrap support
2017-09-30Added release note snippet for prebuilt shared libs.Jussi Pakkanen1-0/+15
2017-09-29Implement capture for generatorsNiklas Claesson2-0/+7
2017-09-29fix typo?Reverend Homer1-1/+1
2017-09-27Allow CustomTarget's to be indexedDylan Baker2-0/+26
This allows a CustomTarget to be indexed, and the resulting indexed value (a CustomTargetIndex type), to be used as a source in other targets. This will confer a dependency on the original target, but only inserts the source file returning by index the original target's outputs. This can allow a CustomTarget that creates both a header and a code file to have it's outputs split, for example. Fixes #1470
2017-09-26docs: get_supported_arguments was added in 0.43.0Nirbheek Chauhan1-3/+3
Closes https://github.com/mesonbuild/meson/issues/2371 [noci]
2017-09-25introduce svn wrap supportLeif Middelschulte1-0/+4
2017-09-22Merge pull request #2187 from centricular/fix-pcap-dependencyJussi Pakkanen1-1/+3
Fix pcap dependency, str.strip() now takes an argument, add cc.get_return_value()
2017-09-22Merge pull request #2350 from tintou/masterJussi Pakkanen1-0/+2
Add 'install' keyword to the gettext macro
2017-09-22Replaced references to 'mesontest'Johan Bjäreholt1-8/+10
'mesontest' is deprecated and is now 'meson test' Replaced all references to 'mesontest' with 'meson test' and added a note of the change in the bottom of the page
2017-09-22Replaced references to 'mesonconf'Johan Bjäreholt1-4/+9
mesonconf is deprecated and all references of it has been replaced with 'meson configure'
2017-09-22Update i18n markdown page to add the new install parameterCorentin Noël1-0/+2
2017-09-20Update Reference-manual.mdNirbheek Chauhan1-2/+8
Add notes about not using full_path() unless absolutely necessary.
2017-09-20docs: Document the new str.strip() featureNirbheek Chauhan1-1/+3
2017-09-20Add detail to the command: kwarg of custom targetsNirbheek Chauhan1-3/+8