diff options
author | Alexey Rusakov <Kitsune-Ral@users.sf.net> | 2022-01-19 13:33:32 +0100 |
---|---|---|
committer | Alexey Rusakov <Kitsune-Ral@users.sf.net> | 2022-01-19 13:33:32 +0100 |
commit | e1ffc58ab9abf6321f92a6b648d6f8da08b0924d (patch) | |
tree | 3624baa7d954d31db654a69facb616e8ec7d91ac | |
parent | 142fc5a21f541e2a7592119df075a543527195b9 (diff) | |
download | libquotient-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.txt | 3 |
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} |