aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docs/markdown/Qt5-module.md11
1 files changed, 7 insertions, 4 deletions
diff --git a/docs/markdown/Qt5-module.md b/docs/markdown/Qt5-module.md
index 613e5c1..e84b5fd 100644
--- a/docs/markdown/Qt5-module.md
+++ b/docs/markdown/Qt5-module.md
@@ -5,10 +5,13 @@ tools and steps required for Qt. The module has one method.
## preprocess
-This method takes six keyword arguments, `moc_headers`, `moc_sources`, `ui_files`, `qresources`
-and `moc_extra_arguments` which define the files that require preprocessing with `moc`, `uic`
-and `rcc` and 'include_directories' which might be needed by moc as well as (optional)
-additional arguments. It returns an opaque object that should be passed to a main build target.
+This method takes the following keyword arguments:
+ - `moc_headers`, `moc_sources`, `ui_files`, `qresources`, which define the files that require preprocessing with `moc`, `uic` and `rcc`
+ - `include_directories`, the directories to add to header search path for `moc` (optional)
+ - `moc_extra_arguments`, any additional arguments to `moc` (optional).
+
+It returns an opaque object that should be passed to a main build target.
+
A simple example would look like this:
```meson