summaryrefslogtreecommitdiff
path: root/docs/sitemap.txt
AgeCommit message (Collapse)Author
2020-03-29Update everything for new release.Jussi Pakkanen
2020-03-28docs: Add a new page with common cross/native file options [skip ci]Dylan Baker
Rather than having two separate sections with duplicated information lets just have one for the common settings, and only document sections specific to each file in separately
2020-02-25Document the project policy on mixing build systems. [skip ci]Jussi Pakkanen
2020-01-24Remove trial conversions as it is stale. [skip ci]Jussi Pakkanen
2020-01-07Prepare new release.Jussi Pakkanen
2019-11-08Created the filesystem module.Jussi Pakkanen
2019-08-12Add is_disabler functionJames Hilliard
This is useful if one needs to check if a variable is a disabler. Signed-off-by: James Hilliard <james.hilliard1@gmail.com>
2019-08-06Describe how to set up VS external project. [skip ci]Jussi Pakkanen
2019-06-16Update things for new release.Jussi Pakkanen
2019-05-22new module "sourceset" to match source file lists against configuration dataPaolo Bonzini
In QEMU a single set of source files is built against many different configurations in order to generate many executable. Each executable includes a different but overlapping subset of the source files; some of the files are compiled separately for each output, others are compiled just once. Using Makefiles, this is achieved with a complicated mechanism involving a combination of non-recursive and recursive make; Meson can do better, but because there are hundreds of such conditional rules, it's important to keep meson.build files brief and easy to follow. Therefore, this commit adds a new module to satisfy this use case while preserving Meson's declarative nature. Configurations are mapped to a configuration_data object, and a new "source set" object is used to store all the rules, and then retrieve the desired set of sources together with their dependencies. The test case shows how extract_objects can be used to satisfy both cases, i.e. when the object files are shared across targets and when they have to be separate. In the real-world case, a project would use two source set objects for the two cases and then do "executable(..., sources: ... , objects: ...)". The next commit adds such an example.
2019-03-15[modules] Add kconfig moduleMark Schulte
Add a kconfig module to allow meson to integrate with existing projects that use kconfig.
2019-03-10Update everything for new release.Jussi Pakkanen
2019-03-10Generate release notes from snippets automatically. [skip ci]Jussi Pakkanen
2019-03-04rewriter: Added docsDaniel Mensinger
2019-02-02Add unstable CUDA module.Olexa Bilaniuk
Includes three general utility functions connected to CUDA, in particular the crafting of -gencode flags as done in CMake: https://github.com/Kitware/CMake/blob/master/Modules/FindCUDA/ select_compute_arch.cmake
2019-01-17add support for generating cmake filesDavid Fort
This new cmake module allows to generate cmake package files. This may ease the porting for cmake projects that are exporting cmake package informations for other depending projects. The module uses as much as possible the templates provided by the cmake installation (and so cmake needs to be installed).
2018-12-09Update everything for release 0.49.0Jussi Pakkanen
2018-11-14docs: Add documentation for Native FilesDylan Baker
2018-09-22Updated release note page.Jussi Pakkanen
2018-08-28hotdoc: Add documentationThibault Saunier
2018-07-21Merge pull request #3893 from FFY00/masterJussi Pakkanen
Add dlang module (dub support)
2018-07-08Document options for mesonChristoph Behle
Document what waring_level 1,2,3 means. Test if markdown files are in sitemap Add Builtin-options.md to sitemap.txt Builtin-options.md: Fix tables in Builtin-options.md Add documentation for warning options Added more options to doc General documentation: Add link to Builtin-options Remove obsolete file Testing: Add function test_markdown_files_in_sitemap. Checks if each markdown file is contained in sitemap.txt
2018-07-02Update everything for new release.Jussi Pakkanen
2018-06-17docs: add documentation related to dub and the dlang moduleFFY00
2018-04-23Updated version number for new release.Jussi Pakkanen
2018-04-09[fixup]: write documentationMathieu Duponchelle
2018-03-04Updated information for new release.Jussi Pakkanen
2018-02-08Fix filename.Jussi Pakkanen
2018-02-08Add style guide documentation.Jussi Pakkanen
2018-02-02Added documentation to IceStorm module.Jussi Pakkanen
2017-12-31Added documentation for project templates.Jussi Pakkanen
2017-12-20Created documentation page for code contributions.Jussi Pakkanen
2017-12-10Updated version number for new release.Jussi Pakkanen
2017-12-05Added documentation for disabler objects.Jussi Pakkanen
2017-10-08Collated release note snippets to main file.Jussi Pakkanen
2017-09-18Merge pull request #2263 from ximion/dlangJussi Pakkanen
d: Add an easy way to use D-specific features
2017-09-18Added a page for reference tables.Jussi Pakkanen
2017-09-17docs: Document the D supportMatthias Klumpp
2017-08-15Bumped version number for new development.Jussi Pakkanen
2017-07-19Added documentation for SIMD module.Jussi Pakkanen
2017-06-12Update versions for new development.Jussi Pakkanen
2017-05-20Updated list of users and minor sitemap cleanup.Jussi Pakkanen
2017-05-11Initialise submodules.Jussi Pakkanen
2017-05-03doc: Fix several minor typos.Elliott Sales de Andrade
2017-05-03doc: Remove duplicate design rationale page.Elliott Sales de Andrade
2017-04-26Added release notes page for 0.41.0.Jussi Pakkanen
2017-04-26docs: Import the website and wiki and build with hotdocThibault Saunier
This allows us to more easily have the documentation in sync with the source code as people will have to document new features etc right at the time where they implement it.