forked from Sara.Sync/godot-cpp-template
Fix formatting of `compatibility_minimum`
Without quotes the values is parsed as a float, breaking in various cases.main
parent
aa093cd429
commit
9e8e06aac7
|
@ -1,7 +1,7 @@
|
|||
[configuration]
|
||||
|
||||
entry_symbol = "example_library_init"
|
||||
compatibility_minimum = 4.1
|
||||
compatibility_minimum = "4.1"
|
||||
|
||||
[libraries]
|
||||
|
||||
|
@ -20,4 +20,4 @@ linux.release.rv64 = "res://bin/libgdexample.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.arm64 = "res://bin/libgdexample.android.template_debug.arm64.so"
|
||||
android.release.arm64 = "res://bin/libgdexample.android.template_release.arm64.so"
|
||||
android.release.arm64 = "res://bin/libgdexample.android.template_release.arm64.so"
|
||||
|
|
Loading…
Reference in New Issue