From b1aae19d229340066f34d1f79418bf4bb0e20fd3 Mon Sep 17 00:00:00 2001 From: Lukas Tenbrink Date: Fri, 4 Oct 2024 18:12:40 +0200 Subject: [PATCH] Fix paths in gdextension. --- .../Info.plist | 2 +- .../Resources/Info.plist | 2 +- demo/bin/example.gdextension | 8 ++++---- 3 files changed, 6 insertions(+), 6 deletions(-) rename bin/ios/{ios.framework => EXTENSION-NAME.macos.template_release.universal.framework}/Info.plist (93%) rename bin/macos/{macos.framework => EXTENSION-NAME.macos.template_release.universal.framework}/Resources/Info.plist (93%) diff --git a/bin/ios/ios.framework/Info.plist b/bin/ios/EXTENSION-NAME.macos.template_release.universal.framework/Info.plist similarity index 93% rename from bin/ios/ios.framework/Info.plist rename to bin/ios/EXTENSION-NAME.macos.template_release.universal.framework/Info.plist index e53964f..9b2d00d 100644 --- a/bin/ios/ios.framework/Info.plist +++ b/bin/ios/EXTENSION-NAME.macos.template_release.universal.framework/Info.plist @@ -7,7 +7,7 @@ CFBundleDevelopmentRegion en CFBundleExecutable - libEXTENSION-NAME.macos.template_release + EXTENSION-NAME.macos.template_release.universal CFBundleName Godot Template Cpp CFBundleDisplayName diff --git a/bin/macos/macos.framework/Resources/Info.plist b/bin/macos/EXTENSION-NAME.macos.template_release.universal.framework/Resources/Info.plist similarity index 93% rename from bin/macos/macos.framework/Resources/Info.plist rename to bin/macos/EXTENSION-NAME.macos.template_release.universal.framework/Resources/Info.plist index 2397cb1..70d9ba3 100644 --- a/bin/macos/macos.framework/Resources/Info.plist +++ b/bin/macos/EXTENSION-NAME.macos.template_release.universal.framework/Resources/Info.plist @@ -7,7 +7,7 @@ CFBundleDevelopmentRegion en CFBundleExecutable - libEXTENSION-NAME.macos.template_release + EXTENSION-NAME.macos.template_release.universal CFBundleName Godot Cpp Template CFBundleDisplayName diff --git a/demo/bin/example.gdextension b/demo/bin/example.gdextension index 18ed2d3..fe24bea 100644 --- a/demo/bin/example.gdextension +++ b/demo/bin/example.gdextension @@ -5,10 +5,10 @@ compatibility_minimum = "4.1" [libraries] -macos.debug = "res://bin/macos/EXTENSION-NAME.framework" -macos.release = "res://bin/macos/EXTENSION-NAME.framework" -ios.debug = "res://bin/ios/EXTENSION-NAME.framework" -ios.release = "res://bin/ios/EXTENSION-NAME.framework" +macos.debug = "res://bin/macos/EXTENSION-NAME.macos.template_debug.universal.framework" +macos.release = "res://bin/macos/EXTENSION-NAME.macos.template_release.universal.framework" +ios.debug = "res://bin/ios/EXTENSION-NAME.ios.template_debug.universal.framework" +ios.release = "res://bin/ios/EXTENSION-NAME.ios.template_release.universal.framework" windows.debug.x86_32 = "res://bin/windows/EXTENSION-NAME.windows.template_debug.x86_32.dll" windows.release.x86_32 = "res://bin/windows/EXTENSION-NAME.windows.template_release.x86_32.dll" windows.debug.x86_64 = "res://bin/windows/libEXTENSION-NAME.windows.template_debug.x86_64.dll"