From c59acf1f54a2cd760e55082a01593a31a690d786 Mon Sep 17 00:00:00 2001 From: Hartmut Goebel Date: Wed, 22 Jan 2020 00:56:27 +0100 Subject: [PATCH] Fix missing link libraries. These are only actually missing if the libraries reside in different prefixes, as it is the case in Guix or Nix. --- examples/Bars/Simple/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/Bars/Simple/CMakeLists.txt b/examples/Bars/Simple/CMakeLists.txt index be2a6fc..b13befb 100644 --- a/examples/Bars/Simple/CMakeLists.txt +++ b/examples/Bars/Simple/CMakeLists.txt @@ -1,3 +1,3 @@ add_executable(BarsSimple main.cpp) -target_link_libraries(BarsSimple KChart Qt5::Widgets) +target_link_libraries(BarsSimple KChart Qt5::Widgets Qt5::Svg) -- 2.21.1 cripts Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/gnu/installer/keymap.scm
AgeCommit message (Expand)Author
2021-09-21installer: keymap: Fix optional fields handling....Fixes: <https://issues.guix.gnu.org/50723>. The keymap xml contains optional shortDescription and description fields. The assoc-ref call on those fields can return false, handle it correctly. * gnu/installer/keymap.scm (xkb-rules->models+layouts): Introduce a new "maybe-empty" helper to deal with optional fields. Use it for shortDescription and description fields. Mathieu Othacehe
2020-04-09installer: Allow Alt+Shift toggle from non-Latin keyboard layouts....Fixes <https://bugs.gnu.org/40493>. * gnu/installer/newt/keymap.scm (%non-latin-layouts): New variable. (%non-latin-variants): New variable. (%latin-layout+variants): New variable. (toggleable-latin-layout): New procedure to compute combined layouts. (run-keymap-page): Use it. (keyboard-layout->configuration): Apply it in config.scm. (run-layout-page): Mention Alt+Shift. * gnu/installer/keymap.scm (kmscon-update-keymap): Pass on XKB options. * gnu/installer/record.scm (<installer>): Adjust code comments. * gnu/installer.scm (apply-keymap): Pass on XKB options. (installer-steps): Adjust code comments. * gnu/packages/patches/kmscon-runtime-keymap-switch.patch: Apply XKB options. Florian Pelz