diff options
author | Alexey Rusakov <Kitsune-Ral@users.sf.net> | 2022-01-05 16:07:25 +0100 |
---|---|---|
committer | Alexey Rusakov <Kitsune-Ral@users.sf.net> | 2022-01-05 17:28:35 +0100 |
commit | ecbff4c1a21ff4c0ab72141bc1a34ae189d33483 (patch) | |
tree | d75c8546666247257074a3026a91536f0f85b3b5 | |
parent | 7ed5f8d90ce25431fb120698c8a079807df7c13a (diff) | |
download | libquotient-ecbff4c1a21ff4c0ab72141bc1a34ae189d33483.tar.gz libquotient-ecbff4c1a21ff4c0ab72141bc1a34ae189d33483.zip |
CMakeLists: add install(TARGETS) components again
Older CMake versions fail if they don't find those (LGTM uses CMake 3.13
and that one does, at least).
-rw-r--r-- | CMakeLists.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index c889cf13..fd5f1dca 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -316,6 +316,7 @@ endif() # Configure installation install(TARGETS ${PROJECT_NAME} EXPORT ${PROJECT_NAME}Targets + ARCHIVE LIBRARY RUNTIME INCLUDES DESTINATION ${${PROJECT_NAME}_INSTALL_INCLUDEDIR} ) install(DIRECTORY lib/ DESTINATION ${${PROJECT_NAME}_INSTALL_INCLUDEDIR} |