summaryrefslogtreecommitdiffstats
path: root/CMakeScripts/HelperMacros.cmake
diff options
context:
space:
mode:
authorEduard Braun <eduard.braun2@gmx.de>2018-01-09 22:42:22 +0000
committerEduard Braun <eduard.braun2@gmx.de>2018-01-09 22:42:22 +0000
commit9a1b0a8c63528142b17bfc81ecfe44031a74a91b (patch)
tree29e64a27486449536ffce590d7e89d46e46f6ac0 /CMakeScripts/HelperMacros.cmake
parentFix and improve window size/position handling/restoration (diff)
downloadinkscape-9a1b0a8c63528142b17bfc81ecfe44031a74a91b.tar.gz
inkscape-9a1b0a8c63528142b17bfc81ecfe44031a74a91b.zip
Do not install static libraries
Diffstat (limited to 'CMakeScripts/HelperMacros.cmake')
-rw-r--r--CMakeScripts/HelperMacros.cmake10
1 files changed, 0 insertions, 10 deletions
diff --git a/CMakeScripts/HelperMacros.cmake b/CMakeScripts/HelperMacros.cmake
index 54bbf9d09..0f7d755fd 100644
--- a/CMakeScripts/HelperMacros.cmake
+++ b/CMakeScripts/HelperMacros.cmake
@@ -34,16 +34,6 @@ macro(add_inkscape_lib
# works fine without having the includes
# listed is helpful for IDE's (QtCreator/MSVC)
inkscape_source_group("${sources}")
-
- # static libraries are probably not useful on Windows
- # (if we ever build shared libraries those would use the RUNTIME target and we might have to revisit this)
- if(NOT WIN32)
- install(TARGETS ${name}
- LIBRARY DESTINATION lib/inkscape
- ARCHIVE DESTINATION lib/inkscape
- )
- endif()
-
endmacro()