diff options
author | Michele Calgaro <[email protected]> | 2021-11-05 18:54:42 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2021-11-05 18:54:42 +0900 |
commit | eb2210c94488f6c57159fede9a98891e4f3a1a52 (patch) | |
tree | 5a00e2f85696aef16ef7bf9c1655f0ca76243195 /cmake/modules/InstallSettings.cmake | |
parent | 58baf01dab5d45b890534bf8a1eb42d677332407 (diff) | |
download | polkit-tqt-eb2210c94488f6c57159fede9a98891e4f3a1a52.tar.gz polkit-tqt-eb2210c94488f6c57159fede9a98891e4f3a1a52.zip |
More conversion polkitqt1 -> polkit-tqt.
Started conversion of 'core' library module.
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'cmake/modules/InstallSettings.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}" ) |