diff options
Diffstat (limited to 'cmake')
-rw-r--r-- | cmake/modules/InstallSettings.cmake | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/cmake/modules/InstallSettings.cmake b/cmake/modules/InstallSettings.cmake index 8c7431718..4c0605a72 100644 --- a/cmake/modules/InstallSettings.cmake +++ b/cmake/modules/InstallSettings.cmake @@ -121,16 +121,9 @@ endif (WIN32) # This will install libraries correctly under UNIX, OSX and Windows (i.e. dll's go # into bin/. # Later on it will be possible to extend this for installing OSX frameworks -# The COMPONENT Devel argument has the effect that static libraries belong to the -# "Devel" install component. If we use this also for all install() commands -# for header files, it will be possible to install -# -everything: make install OR cmake -P cmake_install.cmake -# -only the development files: cmake -DCOMPONENT=Devel -P cmake_install.cmake -# -everything except the development files: cmake -DCOMPONENT=Unspecified -P cmake_install.cmake -# This can then also be used for packaging with cpack. set(INSTALL_TARGETS_DEFAULT_ARGS RUNTIME DESTINATION "${BIN_INSTALL_DIR}" LIBRARY DESTINATION "${LIB_INSTALL_DIR}" - ARCHIVE DESTINATION "${LIB_INSTALL_DIR}" COMPONENT Devel ) + ARCHIVE DESTINATION "${LIB_INSTALL_DIR}" ) |