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 ko Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/gnu/build/install.scm
AgeCommit message (Collapse)Author
2022-12-10install: 'umount-cow-store' retries upon EBUSY.Ludovic Courtès
Possibly fixes <https://issues.guix.gnu.org/59884>. * gnu/build/install.scm (umount*): New procedure. (unmount-cow-store): Use it instead of 'umount'.
2022-11-15install: Validate symlink target in evaluate-populate-directive.Maxim Cournoyer
* gnu/build/install.scm (evaluate-populate-directive): By default, error when the target of a symlink doesn't exist. Always ensure TARGET ends with "/". (populate-root-file-system): Call evaluate-populate-directive with #:error-on-dangling-symlink #t and add comment.