summaryrefslogtreecommitdiffstats
path: root/CMakeScripts
diff options
context:
space:
mode:
authorMarc Jeanmougin <marcjeanmougin@free.fr>2018-01-11 11:10:29 +0000
committerMarc Jeanmougin <marcjeanmougin@free.fr>2018-01-11 11:10:29 +0000
commita52d14ab89c335746bb9ec96080d72caacd8d813 (patch)
tree8218ca4a636266214b9b21f63ef84afe4b9ca38a /CMakeScripts
parentMerge branch 'escapefontspec' of gitlab.com:darktrojan/inkscape (diff)
parentDo not install static libraries (diff)
downloadinkscape-a52d14ab89c335746bb9ec96080d72caacd8d813.tar.gz
inkscape-a52d14ab89c335746bb9ec96080d72caacd8d813.zip
Merge branch 'static_libs' of gitlab.com:Ede123/inkscape
Diffstat (limited to 'CMakeScripts')
-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()