diff options
author | Tomáš Chvátal <tchvatal@suse.com> | 2015-09-01 07:46:46 (GMT) |
---|---|---|
committer | Tomáš Chvátal <tchvatal@suse.com> | 2015-09-01 07:46:46 (GMT) |
commit | 37a148f6e35523fd2bbbdbc37e6ed838684c6d90 (patch) | |
tree | b5ac78fd9ebdaba792621ba3ed524d814f800a60 /qtools | |
parent | 5aa4ade86499ba615da48875a9e7292ddd22c22f (diff) | |
download | Doxygen-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 'qtools')
-rw-r--r-- | qtools/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qtools/CMakeLists.txt b/qtools/CMakeLists.txt index 96c0f27..17f8eb4 100644 --- a/qtools/CMakeLists.txt +++ b/qtools/CMakeLists.txt @@ -52,6 +52,6 @@ qwaitcondition_win32.cpp ) endif() -add_library(qtools +add_library(qtools STATIC ${qtools_src} ) |