diff options
author | Aqua-sama <aqua@iserlohn-fortress.net> | 2018-11-25 13:01:17 +0100 |
---|---|---|
committer | Aqua-sama <aqua@iserlohn-fortress.net> | 2018-11-25 15:05:18 +0100 |
commit | 09c4508aee96ca20d084b8a60b4c6603de8bff8b (patch) | |
tree | fa17b39bb6018b96b8045b3af6bdfbd8e1ca5af5 /doc/Development.asciidoc | |
parent | Add QT_NO_DEBUG to non-debug builds (diff) | |
download | smolbote-09c4508aee96ca20d084b8a60b4c6603de8bff8b.tar.xz |
Add Session Dialog
Diffstat (limited to 'doc/Development.asciidoc')
-rw-r--r-- | doc/Development.asciidoc | 9 |
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. |