summaryrefslogtreecommitdiff
path: root/docs/markdown
Commit message (Collapse)AuthorAgeFilesLines
...
* Missing version info added.Jussi Pakkanen2017-08-171-1/+1
|
* Documented the merge_from method.Jussi Pakkanen2017-08-171-4/+13
|
* Users.md: link to the Meson Porting GNOME goalNirbheek Chauhan2017-08-171-1/+3
|
* docs: fix generator code sampleFlorian Zwoch2017-08-171-1/+1
|
* Documentation: fix broken link (now in docs)Konstantin Mochalov2017-08-151-1/+1
| | | Was [external link on github wiki](https://github.com/mesonbuild/wrapweb/wiki), now markdown file in docs
* Missing dots are fun.Jussi Pakkanen2017-08-152-3/+3
|
* Bumped version number for new development.Jussi Pakkanen2017-08-151-0/+16
|
* Bump numbers for new release.0.42.0Jussi Pakkanen2017-08-151-3/+1
|
* gnome: add mkenums_simple()Tim-Philipp Müller2017-08-142-0/+56
| | | | | | | | | | | | | | 99% of all mkenums uses in C libraries use the same basic template, so add a mkenums_simple() function that takes care of everything for us based on that template. Features: - optional function declaration decorator such as GLIB_AVAILABLE - optional extra header prefix (e.g. for include needed for decorator) - optional extra body prefix (e.g. for additional includes) - optional function name prefix (e.g. to add leading underscores) Fixes issue #1384
* Added documentation for pcap dependency.Jussi Pakkanen2017-08-132-0/+19
|
* gnome: add 'ignore_headers' to permitted kwarg list for gnome.gtkdoc()Tim-Philipp Müller2017-08-131-0/+1
|
* Update wrap-mode FAQNirbheek Chauhan2017-08-101-1/+1
|
* Clarify what an "external dependency" isNirbheek Chauhan2017-08-091-1/+1
| | | And add a link to the Dependencies.md page.
* Merged singleexe branch.Jussi Pakkanen2017-08-061-4/+15
|\
| * Updated release notes.Jussi Pakkanen2017-08-051-0/+11
| |
* | Merged exclude_dir branch.Jussi Pakkanen2017-08-062-5/+21
|\ \
| * | Allow excluding files from `install_subdir`Elliott Sales de Andrade2017-08-062-1/+15
| | | | | | | | | | | | | | | | | | The install_subdir command now accepts a new `exclude` keyword argument that allows specified files to be excluded from the installed subdirectory.
* | | Disallow language keyword for unsupported deps.Elliott Sales de Andrade2017-08-051-0/+1
| | | | | | | | | | | | Also, document it in the manual.
* | | Add documentation for new MPI dependency.Elliott Sales de Andrade2017-08-042-0/+23
|/ /
* | Add option to disable implicit include directories. Closes #2139.Jussi Pakkanen2017-08-052-0/+9
| |
* | Add option to limit maximum number of concurrent link processes.Jussi Pakkanen2017-08-051-0/+8
| |
* | Merge pull request #2113 from nyorain/vulkanJussi Pakkanen2017-08-041-0/+5
|\ \ | |/ |/| Vulkan dependency module
| * Add vulkan dependency to release notesnyorain2017-08-041-0/+5
| |
* | doc: describe joining strings using the + symbolBruce Richardson2017-07-311-0/+10
| |
* | docs: Add gettext example to porting autotools guidePatrick Griffis2017-07-311-0/+59
| |
* | Fix wording about array immutabilityNirbheek Chauhan2017-07-241-1/+1
| |
* | Clarify array immutability and document indexingNirbheek Chauhan2017-07-241-3/+21
| |
* | docs: fix typos in Localization.mdLuca Mattiello2017-07-241-1/+1
|/
* Document the newly added gnome.genmarshal() argumentEmmanuele Bassi2017-07-231-1/+2
|
* Fix typo in Unit-tests.mdLuca Mattiello2017-07-221-1/+1
|
* docs: add missing parenthesesIgor Gnatenko2017-07-221-1/+1
| | | [skip ci]
* Merged buildrpath branch.Jussi Pakkanen2017-07-212-0/+14
|\
| * Check for manual attempts to set rpath and update docs.Jussi Pakkanen2017-07-212-0/+12
| |
* | Merge pull request #1955 from jon-turney/exe-implibJussi Pakkanen2017-07-212-0/+6
|\ \ | |/ |/| Support implibs for executables on Windows
| * Add to release noteJon Turney2017-07-201-0/+5
| |
| * Make the name of the executable implib configurableJon Turney2017-07-201-1/+1
| |
| * Support implibs for executables on WindowsJon Turney2017-07-201-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add a boolean 'implib' kwarg to executable(). If true, it is permitted to use the returned build target object in link_with: On platforms where this makes sense (e.g. Windows), an implib is generated for the executable and used when linking. Otherwise, it has no effect. (Rather than checking if it is a StaticLibrary or SharedLibary, BuildTarget subclasses gain the is_linkable_target method to test if they can appear in link_with:) Also install any executable implib in a similar way to a shared library implib, i.e. placing the implib in the appropriate place Add tests of: - a shared_module containing a reference to a symbol which is known (at link time) to be provided by the executable - trying to link with non-implib executables (should fail) - installing the implib (This last one needs a little enhancement of the installed file checking as this is the first install test we have which needs to work with either MSVC-style or GCC-style implib filenames)
* | Link to compiler properties for compiler ids listNirbheek Chauhan2017-07-211-1/+1
| | | | | | [skip ci]
* | Update compiler ids in Compiler-properties.mdNirbheek Chauhan2017-07-211-0/+5
| |
* | Updates to the reference manualNirbheek Chauhan2017-07-211-5/+7
|/ | | Typos, add details about how subprojects work, document compiler ids.
* Merge pull request #1374 from mesonbuild/simdJussi Pakkanen2017-07-193-1/+88
|\ | | | | Add support for SIMD detection
| * Added documentation for SIMD module.Jussi Pakkanen2017-07-193-1/+88
| |
* | docs: Add HexChat to users... againTingPing2017-07-181-0/+1
| |
* | Update Users.md: point to upstream GLib repoTim-Philipp Müller2017-07-191-3/+2
| | | | | | And link to Gtk+ master branch instead of wip/meson.
* | docs: Add HexChat to list of usersTingPing2017-07-181-0/+1
| |
* | Add more projects to Users.mdNirbheek Chauhan2017-07-181-2/+6
|/
* Merge pull request #2072 from centricular/fix-gtkdoc-rpathJussi Pakkanen2017-07-171-2/+2
|\ | | | | Various gtkdoc fixes
| * gnome.gtkdoc: Handle absolute install_dirs correctlyNirbheek Chauhan2017-07-171-2/+2
| | | | | | | | | | Must prepend DESTDIR in case it's absolute. Also document that by default it is relative to the gtk-doc html directory.
* | Removed minor typos in documentation.Alexis Jeandet2017-07-173-3/+3
| | | | | | | | Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>
* | Added a missing closing parenthesis in the last exampleAlexis Jeandet2017-07-171-1/+1
|/ | | There was a missing parenthesis at the end of the last example.