Fix binary location and name and add web support

pull/32/head
Patrick Exner 2024-05-20 00:39:40 +02:00
parent 03a3cb3b19
commit 7c8c21a8af
4 changed files with 32 additions and 22 deletions

View File

@ -57,7 +57,7 @@ file = "{}{}{}".format(libname, env["suffix"], env["SHLIBSUFFIX"])
if env["platform"] == "macos" or env["platform"] == "ios": if env["platform"] == "macos" or env["platform"] == "ios":
platlibname = "{}.{}.{}".format(libname, env["platform"], env["target"]) platlibname = "{}.{}.{}".format(libname, env["platform"], env["target"])
file = "{}.framework/{}".format(env["platform"], platlibname, platlibname) file = "{}.framework/{}".format(platlibname, platlibname)
libraryfile = "bin/{}/{}".format(env["platform"], file) libraryfile = "bin/{}/{}".format(env["platform"], file)
library = env.SharedLibrary( library = env.SharedLibrary(
@ -65,7 +65,7 @@ library = env.SharedLibrary(
source=sources, source=sources,
) )
copy = env.InstallAs("{}/bin/{}/lib{}".format(projectdir, env["platform"], file), library) copy = env.InstallAs("{}/bin/{}/{}".format(projectdir, env["platform"], file), library)
default_args = [library, copy] default_args = [library, copy]
if localEnv.get("compiledb", False): if localEnv.get("compiledb", False):

View File

@ -2,24 +2,34 @@
entry_symbol = "example_library_init" entry_symbol = "example_library_init"
compatibility_minimum = "4.1" compatibility_minimum = "4.1"
reloadable = true
[libraries] [libraries]
macos.debug = "res://bin/libgdexample.macos.template_debug.framework" macos.debug = "res://bin/macos/EXTENSION-NAME.macos.template_debug.framework"
macos.release = "res://bin/libgdexample.macos.template_release.framework" macos.release = "res://bin/macos/EXTENSION-NAME.macos.template_release.framework"
ios.debug = "res://bin/libgdexample.ios.template_debug.framework"
ios.release = "res://bin/libgdexample.ios.template_release.framework" windows.debug.x86_32 = "res://bin/windows/EXTENSION-NAME.windows.template_debug.x86_32.dll"
windows.debug.x86_32 = "res://bin/libgdexample.windows.template_debug.x86_32.dll" windows.release.x86_32 = "res://bin/windows/EXTENSION-NAME.windows.template_release.x86_32.dll"
windows.release.x86_32 = "res://bin/libgdexample.windows.template_release.x86_32.dll" windows.debug.x86_64 = "res://bin/windows/EXTENSION-NAME.windows.template_debug.x86_64.dll"
windows.debug.x86_64 = "res://bin/libgdexample.windows.template_debug.x86_64.dll" windows.release.x86_64 = "res://bin/windows/EXTENSION-NAME.windows.template_release.x86_64.dll"
windows.release.x86_64 = "res://bin/libgdexample.windows.template_release.x86_64.dll"
linux.debug.x86_64 = "res://bin/libgdexample.linux.template_debug.x86_64.so" linux.debug.x86_64 = "res://bin/linux/EXTENSION-NAME.linux.template_debug.x86_64.so"
linux.release.x86_64 = "res://bin/libgdexample.linux.template_release.x86_64.so" linux.release.x86_64 = "res://bin/linux/EXTENSION-NAME.linux.template_release.x86_64.so"
linux.debug.arm64 = "res://bin/libgdexample.linux.template_debug.arm64.so" linux.debug.arm64 = "res://bin/linux/EXTENSION-NAME.linux.template_debug.arm64.so"
linux.release.arm64 = "res://bin/libgdexample.linux.template_release.arm64.so" linux.release.arm64 = "res://bin/linux/EXTENSION-NAME.linux.template_release.arm64.so"
linux.debug.rv64 = "res://bin/libgdexample.linux.template_debug.rv64.so" linux.debug.rv64 = "res://bin/linux/EXTENSION-NAME.linux.template_debug.rv64.so"
linux.release.rv64 = "res://bin/libgdexample.linux.template_release.rv64.so" linux.release.rv64 = "res://bin/linux/EXTENSION-NAME.linux.template_release.rv64.so"
android.debug.x86_64 = "res://bin/libgdexample.android.template_debug.x86_64.so"
android.release.x86_64 = "res://bin/libgdexample.android.template_release.x86_64.so" android.debug.x86_64 = "res://bin/android/EXTENSION-NAME.android.template_debug.x86_64.so"
android.debug.arm64 = "res://bin/libgdexample.android.template_debug.arm64.so" android.release.x86_64 = "res://bin/android/EXTENSION-NAME.android.template_release.x86_64.so"
android.release.arm64 = "res://bin/libgdexample.android.template_release.arm64.so" android.debug.arm64 = "res://bin/android/EXTENSION-NAME.android.template_debug.arm64.so"
android.release.arm64 = "res://bin/android/EXTENSION-NAME.android.template_release.arm64.so"
ios.debug = "res://bin/ios/EXTENSION-NAME.ios.template_debug.xcframework"
ios.release = "res://bin/ios/EXTENSION-NAME.ios.template_release.xcframework"
web.debug.threads.wasm32 = "res://bin/web/EXTENSION-NAME.web.template_debug.wasm32.wasm"
web.release.threads.wasm32 = "res://bin/web/EXTENSION-NAME.web.template_release.wasm32.wasm"
web.debug.wasm32 = "res://bin/web/EXTENSION-NAME.web.template_debug.wasm32.nothreads.wasm"
web.release.wasm32 = "res://bin/web/EXTENSION-NAME.web.template_release.wasm32.nothreads.wasm"

View File

@ -11,5 +11,5 @@ config_version=5
[application] [application]
config/name="godot cpp template" config/name="godot cpp template"
config/features=PackedStringArray("4.1", "Forward Plus") config/features=PackedStringArray("4.2", "Forward Plus")
config/icon="res://icon.svg" config/icon="res://icon.svg"

@ -1 +1 @@
Subproject commit 54136ee8357c5140a3775c54f08db5f7deda2058 Subproject commit 98c143a48365f3f3bf5f99d6289a2cb25e6472d1