Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix executable as script on Windows | Xavier Claessens | 2021-01-30 | 1 | -6/+1 |
| | | | | | | | | | | | | | | | | | | On Windows this would fail because of missing DLL: ``` mylib = library(...) exe = executable(..., link_with: mylib) meson.add_install_script(exe) ``` The reason is on Windows we cannot rely on rpath to find libraries from build directory, they are searched in $PATH. We already have all that mechanism in place for custom_target() using ExecutableSerialisation class, so reuse it for install/dist/postconf scripts too. This has bonus side effect to also use exe_wrapper for those scripts. Fixes: #8187 | ||||
* | Fix misspells | Antonin Décimo | 2021-01-13 | 1 | -2/+2 |
| | | | | Signed-off-by: Antonin Décimo <antonin.decimo@gmail.com> | ||||
* | Use a single coredata dictionary for options | Dylan Baker | 2021-01-04 | 1 | -1/+1 |
| | | | | | | | This patches takes the options work to it's logical conclusion: A single flat dictionary of OptionKey: UserOptions. This allows us to simplify a large number of cases, as we don't need to check if an option is in this dict or that one (or any of 5 or 6, actually). | ||||
* | Make werror per subproject option | Xavier Claessens | 2020-03-24 | 1 | -1/+1 |
| | |||||
* | hotdoc: work around argparse syntax ambiguity | Mathieu Duponchelle | 2019-11-11 | 1 | -3/+19 |
| | | | | Fixes #5800 | ||||
* | hotdoc: Handle werror | Thibault Saunier | 2019-04-24 | 1 | -0/+3 |
| | |||||
* | hotdoc: Take into account boolean value to pass flag like arguments | Thibault Saunier | 2019-04-24 | 1 | -1/+2 |
| | |||||
* | hotdoc: Set gi-c-source-root | Thibault Saunier | 2019-03-10 | 1 | -0/+14 |
| | | | | The same way as we set '--sources-top-dirs' for gi | ||||
* | hotdoc: Fix has_extensions when several extensions are passed in | Thibault Saunier | 2018-11-15 | 1 | -1/+1 |
| | |||||
* | hotdoc: Add support for {Build,Custom}Target as sources | Thibault Saunier | 2018-09-23 | 1 | -3/+7 |
| | |||||
* | hotdoc: Make project_version mandatory as it should always have been | Thibault Saunier | 2018-09-10 | 1 | -0/+1 |
| | |||||
* | hotdoc: Handle IncludeDirs to specify directories | Thibault Saunier | 2018-09-10 | 1 | -2/+12 |
| | |||||
* | docs: Use meson to build documentation | Thibault Saunier | 2018-08-28 | 1 | -5/+1 |
| | | | | Let's eat our own dogfood. | ||||
* | modules: Add an 'hotdoc' module | Thibault Saunier | 2018-08-28 | 1 | -0/+390 |
hotdoc: http://github.com/hotdoc/hotdoc/ |