respect lib suffix when installing cmake files

Some cmake files contain pathes to the lib directory with suffix.
So they should respect the suffix as well.
This commit is contained in:
Raphael Freudiger
2018-02-14 15:13:46 +01:00
parent d993fb09b7
commit 1dc38d8500
2 changed files with 4 additions and 4 deletions

View File

@@ -309,7 +309,7 @@ install(
${CMAKE_CURRENT_BINARY_DIR}/${PROJECT_NAME}/${PROJECT_NAME}Config.cmake
${CMAKE_CURRENT_BINARY_DIR}/${PROJECT_NAME}/${PROJECT_NAME}ConfigVersion.cmake
DESTINATION
"lib/cmake/${PROJECT_NAME}"
"lib${LIB_SUFFIX}/cmake/${PROJECT_NAME}"
COMPONENT
Devel
)