Remove .framework folders and code signing for macOS and iOS

This commit is contained in:
unvermuthet
2025-02-19 11:52:20 +01:00
parent db25e65728
commit e4e73a26d7
7 changed files with 6 additions and 387 deletions

View File

@@ -5,10 +5,10 @@ compatibility_minimum = "4.1"
[libraries]
; Relative paths ensure that our GDExtension can be placed anywhere in the project directory.
macos.debug = "./macos/macos.framework/libEXTENSION-NAME.macos.template_debug.universal"
macos.release = "./macos/macos.framework/libEXTENSION-NAME.macos.template_release.universal"
ios.debug = "./ios/ios.framework/libEXTENSION-NAME.ios.template_debug.arm64"
ios.release = "./ios/ios.framework/libEXTENSION-NAME.ios.template_release.arm64"
macos.debug = "./macos/libEXTENSION-NAME.macos.template_debug.universal.dylib"
macos.release = "./macos/libEXTENSION-NAME.macos.template_release.universal.dylib"
ios.debug = "./ios/libEXTENSION-NAME.ios.template_debug.arm64.dylib"
ios.release = "./ios/libEXTENSION-NAME.ios.template_release.arm64.dylib"
windows.debug.x86_32 = "./windows/libEXTENSION-NAME.windows.template_debug.x86_32.dll"
windows.release.x86_32 = "./windows/libEXTENSION-NAME.windows.template_release.x86_32.dll"
windows.debug.x86_64 = "./windows/libEXTENSION-NAME.windows.template_debug.x86_64.dll"