[desktop] debug macOS app launch

This commit is contained in:
maxkadushkin
2024-10-09 01:08:19 +03:00
parent 3534f65f0e
commit edec5bb25f

View File

@ -103,6 +103,11 @@ def make():
base.generate_doctrenderer_config(root_dir + "/converter/DoctRenderer.config", "../editors/", "desktop", "", "../dictionaries")
base.copy_dir(git_dir + "/document-templates/new", root_dir + "/converter/empty")
base.copy_dir(git_dir + "/desktop-apps/common/templates", root_dir + "/converter/templates")
if (0 == platform.find("mac")):
# TODO: check macOS app launch issue when localized file name templates inside
base.copy_dir(git_dir + "/desktop-apps/common/templates/EN", root_dir + "/converter/templates/EN")
else:
base.copy_dir(git_dir + "/desktop-apps/common/templates", root_dir + "/converter/templates")
# dictionaries
base.copy_dictionaries(git_dir + "/dictionaries", root_dir + "/dictionaries")