diff options
author | Slávek Banko <[email protected]> | 2019-10-10 20:05:26 +0200 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2019-10-11 14:45:27 +0200 |
commit | e3d7138ea49aa569a9a5bd2aeb74fe3f1d42cd3f (patch) | |
tree | 3e741f87639b114cae3eaeeaf7d7ca72d4864037 | |
parent | 15092c5c00388a87346b06c08fe3546c09d56a79 (diff) | |
download | libcarddav-e3d7138ea49aa569a9a5bd2aeb74fe3f1d42cd3f.tar.gz libcarddav-e3d7138ea49aa569a9a5bd2aeb74fe3f1d42cd3f.zip |
cmake: Install libraries according to multi-arch rules.
Signed-off-by: Slávek Banko <[email protected]>
(cherry picked from commit 07bdc95e0b5ebec3f03a3d69f0965873d6bc5725)
-rw-r--r-- | CMakeLists.txt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 2c484bc..22bd1d4 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -25,6 +25,7 @@ include( CheckSymbolExists ) include( CheckIncludeFile ) include( CheckLibraryExists ) include( CheckCSourceCompiles ) +include( GNUInstallDirs OPTIONAL ) #### include our cmake modules @@ -35,6 +36,10 @@ include( TDEMacros ) ##### setup install paths +if( CMAKE_INSTALL_LIBDIR ) + tde_setup_install_path( LIB_INSTALL_DIR "${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_LIBDIR}" ) +endif( ) + include( TDESetupPaths ) tde_setup_paths( ) |