aboutsummaryrefslogtreecommitdiff
path: root/doc/Development.asciidoc
diff options
context:
space:
mode:
Diffstat (limited to 'doc/Development.asciidoc')
-rw-r--r--doc/Development.asciidoc9
1 files changed, 9 insertions, 0 deletions
diff --git a/doc/Development.asciidoc b/doc/Development.asciidoc
index c849d67..1ef2ded 100644
--- a/doc/Development.asciidoc
+++ b/doc/Development.asciidoc
@@ -15,6 +15,15 @@ extensions. Source code should be kept as platform-agnostic as possible.
syntax (SIGNAL/SLOT). This enables compile-time connect checks.
* Prefer QVector over QList: http://lists.qt-project.org/pipermail/development/2017-March/029040.html
+=== Setting linker
+Meson has no environment variable to set the linker (link:https://github.com/mesonbuild/meson/issues/3597[issue]).
+
+Instead, this can be done using the cpp_link_args:
+[source, sh]
+----
+build% meson configure -Dcpp_link_args='-fuse-ld=gold'
+----
+
=== clazy
You can use https://github.com/KDE/clazy[clazy] to check Qt semantics.