1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
From: Ole Streicher <olebole@debian.org>
Date: Mon, 1 Nov 2021 09:14:09 +0100
Subject: Install libs in multi-arch path
---
CMakeLists.txt | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 72dfe39..36c6d76 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -519,7 +519,7 @@ target_link_libraries(wspredictionexample ${EXTERNAL_LIBRARIES})
install(TARGETS wsclean DESTINATION bin)
install(
TARGETS wsclean-shared
- LIBRARY DESTINATION lib
+ LIBRARY DESTINATION lib/${DEB_HOST_MULTIARCH}
FILE_SET wsclean_headers
DESTINATION include/wsclean
FILE_SET aocommon_headers
|