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:
parent
4ad37bc9ea
commit
bec2920f12
|
@ -24,7 +24,7 @@ set( QA_UTIL_COMMON_SRC
|
||||||
)
|
)
|
||||||
|
|
||||||
# A generic library of useful functions for various testing purposes
|
# A generic library of useful functions for various testing purposes
|
||||||
add_library( qa_utils
|
add_library( qa_utils STATIC
|
||||||
${QA_UTIL_COMMON_SRC}
|
${QA_UTIL_COMMON_SRC}
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue