1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00

fix(cmake): use the 'STATIC' argument for 'translations_library'

Fix running qTox in environments that set 'BUILD_SHARED_LIBS=ON' at
build-time.

Thanks-to: Andreas Sturmlechner <asturm@gentoo.org>
Closes: https://github.com/qTox/qTox/issues/6183
This commit is contained in:
Jimi Huotari 2020-07-05 20:55:09 +03:00
parent ede0418b4f
commit 5ba63af9cb

View File

@ -81,7 +81,7 @@ endfunction()
generate_translation_resource() generate_translation_resource()
configure_file(${CMAKE_CURRENT_BINARY_DIR}/translations.qrc.in ./translations.qrc COPYONLY) configure_file(${CMAKE_CURRENT_BINARY_DIR}/translations.qrc.in ./translations.qrc COPYONLY)
add_library(translations_library ${CMAKE_CURRENT_BINARY_DIR}/translations.qrc) add_library(translations_library STATIC ${CMAKE_CURRENT_BINARY_DIR}/translations.qrc)
# An explicit dependency is needed or AUTORCC will run before the translation files are created # An explicit dependency is needed or AUTORCC will run before the translation files are created
set_target_properties(translations_library PROPERTIES AUTOGEN_TARGET_DEPENDS "${translations_FILES}") set_target_properties(translations_library PROPERTIES AUTOGEN_TARGET_DEPENDS "${translations_FILES}")