diff options
author | Alexey Rusakov <Kitsune-Ral@users.sf.net> | 2021-12-30 17:56:52 +0100 |
---|---|---|
committer | Alexey Rusakov <Kitsune-Ral@users.sf.net> | 2022-01-01 20:46:53 +0100 |
commit | ca42b3659e1916d384d092b8c31c49e3ffd6441b (patch) | |
tree | 8658b5fe3c1fabe690c59376f900c0c3a5b9e6c7 /CMakeLists.txt | |
parent | 874ea3fae21d6b5cab12c8e524e8b25442e4cdd5 (diff) | |
download | libquotient-ca42b3659e1916d384d092b8c31c49e3ffd6441b.tar.gz libquotient-ca42b3659e1916d384d092b8c31c49e3ffd6441b.zip |
CMakeLists: Drop unneeded parts from install(TARGETS)
Those DESTINATION specifications match precisely what CMake does by
default (on Linux at least); what's worse is that they prevent CMake
to install the DLL file on Windows.
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 45aa3726..c889cf13 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -316,8 +316,6 @@ endif() # Configure installation install(TARGETS ${PROJECT_NAME} EXPORT ${PROJECT_NAME}Targets - ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR} - LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR} INCLUDES DESTINATION ${${PROJECT_NAME}_INSTALL_INCLUDEDIR} ) install(DIRECTORY lib/ DESTINATION ${${PROJECT_NAME}_INSTALL_INCLUDEDIR} |