Browse Source

Merge pull request #6184

Jimi Huotari (1):
      fix(cmake): use the 'STATIC' argument for 'translations_library'
reviewable/pr6186/r1
Anthony Bilinski 5 years ago
parent
commit
f5c813bdb9
No known key found for this signature in database
GPG Key ID: 2AA8E0DA1B31FB3C
  1. 2
      translations/CMakeLists.txt

2
translations/CMakeLists.txt vendored

@ -81,7 +81,7 @@ endfunction() @@ -81,7 +81,7 @@ endfunction()
generate_translation_resource()
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
set_target_properties(translations_library PROPERTIES AUTOGEN_TARGET_DEPENDS "${translations_FILES}")

Loading…
Cancel
Save