QA: qa_utils has to be static

If qa_utils is not explicitly declared with STATIC, the build
fails in environments where the BUILD_SHARED_LIBS CMake option is
present and set to "ON". An example of this is Fedora COPR.
This commit is contained in:
John Beard 2018-11-05 10:14:36 +00:00 committed by Wayne Stambaugh
parent 4ad37bc9ea
commit bec2920f12
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ set( QA_UTIL_COMMON_SRC
)
# A generic library of useful functions for various testing purposes
add_library( qa_utils
add_library( qa_utils STATIC
${QA_UTIL_COMMON_SRC}
)