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 KChart6 Qt::Widgets) +target_link_libraries(BarsSimple KChart6 Qt::Widgets Qt::Svg) -- 2.21.1 input type='submit' value='switch'/> Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/etc/init.d
AgeCommit message (Expand)Author
2021-07-07guix-install.sh: Prompt for configuring substitutes discovery....Also ensure prompt_yes_no always print the message with a trailing space, which is more pleasing to the eye. * etc/guix-daemon.conf.in <--discover=no>: New guix-daemon option. * etc/guix-daemon.service.in: Likewise. * etc/init.d/guix-daemon.in: Likewise. * etc/openrc/guix-daemon.in: Likewise. * etc/guix-install.sh (configure_substitute_discovery): New procedure. (sys_enable_guix_daemon): Ask the user whether automatic substitute discovery should be enabled. Set the '--discover' argument accordingly. (prompt_yes_no): Add a trailing space to the message. (sys_authorize_build_farms): Remove trailing space from the message argument. * NEWS (Distribution): Add news. Maxim Cournoyer