aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexey Rusakov <Kitsune-Ral@users.sf.net>2022-01-19 13:33:32 +0100
committerAlexey Rusakov <Kitsune-Ral@users.sf.net>2022-01-19 13:33:32 +0100
commite1ffc58ab9abf6321f92a6b648d6f8da08b0924d (patch)
tree3624baa7d954d31db654a69facb616e8ec7d91ac
parent142fc5a21f541e2a7592119df075a543527195b9 (diff)
downloadlibquotient-e1ffc58ab9abf6321f92a6b648d6f8da08b0924d.tar.gz
libquotient-e1ffc58ab9abf6321f92a6b648d6f8da08b0924d.zip
CMakeLists: Bring back ARCHIVE DESTINATION in install()
The older CMake used by LGTM is still unhappy without it. (See also recent changes to this file.)
-rw-r--r--CMakeLists.txt3
1 files changed, 2 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index fd5f1dca..c4e97673 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -316,7 +316,8 @@ endif()
# Configure installation
install(TARGETS ${PROJECT_NAME} EXPORT ${PROJECT_NAME}Targets
- ARCHIVE LIBRARY RUNTIME
+ LIBRARY RUNTIME
+ ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR}
INCLUDES DESTINATION ${${PROJECT_NAME}_INSTALL_INCLUDEDIR}
)
install(DIRECTORY lib/ DESTINATION ${${PROJECT_NAME}_INSTALL_INCLUDEDIR}