summaryrefslogtreecommitdiffstats
path: root/libmd5
diff options
context:
space:
mode:
authorTomáš Chvátal <tchvatal@suse.com>2015-09-01 07:46:46 (GMT)
committerTomáš Chvátal <tchvatal@suse.com>2015-09-01 07:46:46 (GMT)
commit37a148f6e35523fd2bbbdbc37e6ed838684c6d90 (patch)
treeb5ac78fd9ebdaba792621ba3ed524d814f800a60 /libmd5
parent5aa4ade86499ba615da48875a9e7292ddd22c22f (diff)
downloadDoxygen-37a148f6e35523fd2bbbdbc37e6ed838684c6d90.zip
Doxygen-37a148f6e35523fd2bbbdbc37e6ed838684c6d90.tar.gz
Doxygen-37a148f6e35523fd2bbbdbc37e6ed838684c6d90.tar.bz2
Use STATIC libraries to prevent them being shared
This can happen when user override definition of -DBUILD_SHARED_LIBS=ON. Without this hard-enforce the libraries would be generated as shared while never installed. Thus resulting in broken binaries.
Diffstat (limited to 'libmd5')
-rw-r--r--libmd5/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/libmd5/CMakeLists.txt b/libmd5/CMakeLists.txt
index 4d98d01..ae7e111 100644
--- a/libmd5/CMakeLists.txt
+++ b/libmd5/CMakeLists.txt
@@ -1,3 +1,3 @@
-add_library(md5
+add_library(md5 STATIC
md5.c
)