Merge remote-tracking branch 'origin/boyscout_translations_conan_package' into boyscout_translations_conan_package

This commit is contained in:
Jelle Spijker 2022-10-23 15:17:34 +02:00
commit 9f9723906f
No known key found for this signature in database
GPG Key ID: 6662DC033BE6B99A

View File

@ -291,14 +291,15 @@ class CuraConan(ConanFile):
def build(self):
if self.settings.os == "Windows":
self.win_bash = True # We need gettext, which requires the bash environment
return
# FIXME: once m4, autoconf, automake are Conan V2 ready self.win_bash = True # We need gettext, which requires the bash environment
for po_file in self.source_path.joinpath("resources", "i18n").glob("**/*.po"):
mo_file = self.build_path.joinpath(po_file.with_suffix('.mo').relative_to(self.source_path))
mkdir(self, str(unix_path(self, mo_file.parent)))
self.run(f"msgfmt {po_file} -o {mo_file} -f", env="conanbuild")
self.win_bash = None
# FIXME: once m4, autoconf, automake are Conan V2 ready self.win_bash = None
def generate(self):
cura_run_envvars = self._cura_run_env.vars(self, scope = "run")