From c21b108b471f68f787a4ce65f9ac51d247275629 Mon Sep 17 00:00:00 2001 From: Andrey Astafyev Date: Wed, 6 Mar 2019 01:22:16 +0300 Subject: [PATCH] =?UTF-8?q?=D0=9F=D1=83=D1=82=D1=8C=20=D0=B4=D0=BB=D1=8F?= =?UTF-8?q?=20=D1=83=D1=81=D1=82=D0=B0=D0=BD=D0=BE=D0=B2=D0=BA=D0=B8=20?= =?UTF-8?q?=D0=B1=D0=B8=D0=B1=D0=BB=D0=B8=D0=BE=D1=82=D0=B5=D0=BA=20=D0=B2?= =?UTF-8?q?=20Debian?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CMLibCommon.cmake | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CMLibCommon.cmake b/CMLibCommon.cmake index d69d4f2..f7920f5 100644 --- a/CMLibCommon.cmake +++ b/CMLibCommon.cmake @@ -8,6 +8,9 @@ endif() include(CMLibDisableInSourceBuild) include(CMakeParseArguments) include(GNUInstallDirs) +if(DEFINED ENV{DEB_HOST_MULTIARCH}) + string(APPEND CMAKE_INSTALL_LIBDIR "/$ENV{DEB_HOST_MULTIARCH}") +endif() set(CMAKE_CXX_STANDARD_REQUIRED ON) set_property(GLOBAL PROPERTY USE_FOLDERS ON)