summaryrefslogtreecommitdiff
path: root/docs/markdown/Windows-module.md
AgeCommit message (Collapse)Author
2025-11-30Revert "Detect dependency changes in Windows rc compiler"Jussi Pakkanen
This reverts commit 632115ecff3bd7f9cb519098e04e0467b0cfd3a1.
2025-10-14Detect dependency changes in Windows rc compilerCharles Brunet
The `rc.exe` resource compiler neither provides *depfile* support nor allows showing includes, as is possible with C or C++ compilers. Therefore, changes to files included by the `.rc` file did not trigger recompilation of the resource file. A workaround was added to *meson* by calling the preprocessor on the `.rc` file to detect the included headers and adding the result as a dependency to the resource compilation.
2024-04-05depends keyword argument: accept CustomTargetIndexGerion Entrup
That holds for all of these meson function: run_target, generator and custom_target and additionally to the Windows and Gnome module.
2023-04-11fix various spelling issuesJosh Soref
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
2022-12-06docs: Add missing import to the windows module example.Angelo Haller
2021-10-09modules/windows: allow CustomTargets with more than one output for ↵Dylan Baker
compile_resources
2021-01-30Rewrap long text lines in docs. [skip ci]Jussi Pakkanen
2018-09-10Improve windows resource compiler executable selectionJon Turney
Always honour any windres setting in cross-file (we can't be compiling with msvc, but this should apply when cross-compiling using gcc or clang) Always honour WINDRES environment variable Otherwise look for the resource compiler which is part of the same toolset as the C or C++ compiler. Add some commentary on why the conventions for compiled resource file extensions differ between RC and windres Also don't try to report non-existent path when we couldn't find the resource compiler.
2018-06-18Add a depends: keyword to windows.compile_resources()Jon Turney
Expose depends: from the custom_target this creates.
2018-06-01Clarify how Windows resource compiler uses the include pathJon Turney
2018-06-01Add a depend_files: keyword to windows.compile_resources()Jon Turney
Expose depend_files: from the custom_target this creates. This is the change suggested in #2815, with tests and documentation added. Fixes #2789 (duplicate #2830)
2017-08-21Wrapped and alphabetized the remaining modules.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.