diff options
Diffstat (limited to 'docs')
-rw-r--r-- | docs/markdown/Windows-module.md | 2 | ||||
-rw-r--r-- | docs/markdown/snippets/windows-resources-dependencies.md | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/docs/markdown/Windows-module.md b/docs/markdown/Windows-module.md index 8098c11..39f1ba6 100644 --- a/docs/markdown/Windows-module.md +++ b/docs/markdown/Windows-module.md @@ -16,6 +16,8 @@ has the following keyword argument. - `depend_files` lists resource files that the resource script depends on (e.g. bitmap, cursor, font, html, icon, message table, binary data or manifest files referenced by the resource script) (*since 0.47.0*) +- `depends` lists target(s) that this target depends on, even though it does not + take them as an argument (e.g. as above, but generated) (*since 0.47.0*) - `include_directories` lists directories to be both searched by the resource compiler for referenced resource files, and added to the preprocessor include search path. diff --git a/docs/markdown/snippets/windows-resources-dependencies.md b/docs/markdown/snippets/windows-resources-dependencies.md index e30e18c..e061778 100644 --- a/docs/markdown/snippets/windows-resources-dependencies.md +++ b/docs/markdown/snippets/windows-resources-dependencies.md @@ -1,7 +1,7 @@ ## Windows resource files dependencies The `compile_resources()` function of the `windows` module now takes -the `depend_files:` keyword. +the `depend_files:` and `depends:` keywords. When using binutils's `windres`, dependencies on files `#include`'d by the preprocessor are now automatically tracked. |