diff --git a/blender/arm/props_exporter.py b/blender/arm/props_exporter.py index 25b4b444..92d04789 100644 --- a/blender/arm/props_exporter.py +++ b/blender/arm/props_exporter.py @@ -78,7 +78,9 @@ class ArmExporterListItem(bpy.types.PropertyGroup): ('ios', 'iOS', 'ios'), ('android-native', 'Android', 'android-native'), ('node', 'Node', 'node'), - ('windows-hl', 'Windows (HashLink)', 'windows-hl'),], + ('windows-hl', 'Windows (HashLink)', 'windows-hl'), + ('linux-hl', 'Linux (HashLink)', 'linux-hl'), + ('macos-hl', 'MacOS (HashLink)', 'macos-hl'),], name="Target", default='html5', description='Build platform') arm_gapi_win = EnumProperty( diff --git a/blender/arm/utils.py b/blender/arm/utils.py index d7f5625e..21141361 100755 --- a/blender/arm/utils.py +++ b/blender/arm/utils.py @@ -555,8 +555,12 @@ def target_to_gapi(arm_project_target): return 'arm_gapi_win' elif arm_project_target == 'krom-linux': return 'arm_gapi_linux' + elif arm_project_target == 'linux-hl': + return 'arm_gapi_linux' elif arm_project_target == 'krom-macos': return 'arm_gapi_mac' + elif arm_project_target == 'macos-hl': + return 'arm_gapi_mac' elif arm_project_target == 'macos': return 'arm_gapi_mac' elif arm_project_target == 'windows':