aboutsummaryrefslogtreecommitdiff
path: root/docs/markdown/Pkgconfig-module.md
AgeCommit message (Collapse)AuthorFilesLines
2017-06-29pkgconfig: add support for extra_cflagsBruce Richardson1-0/+1
Allow the user to pass in arbitrary cflags for putting into the generated pkgconfig file.
2017-05-11pkgconfig: add suppport for custom variables during generationPeter Hutterer1-0/+1
Usage: pkgconfig.generate( ... description : 'A library with custom variables.', variables : ['foo=bar', 'datadir=${prefix}/data'] ) The variables 'prefix', 'libdir' and 'includedir' are reserved, meson will fail with an error message. Variables can reference each other with the pkgconfig notation, e.g. variables : ['datadir=${prefix}/data', 'otherdatadir=${datadir}/other'] meson does not check this for correctness or that the referenced variable exists, we merely keep the same order as specified.
2017-05-03doc: Use https links wherever possible.Elliott Sales de Andrade1-1/+1
2017-04-26docs: Import the website and wiki and build with hotdocThibault Saunier1-0/+22
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.