diff --git a/docs/markdown/Qt5-module.md b/docs/markdown/Qt5-module.md index 613e5c1f2..e84b5fd3f 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