diff --git a/scripts/genie.lua b/scripts/genie.lua index 3ed8a94e7..114a97e14 100644 --- a/scripts/genie.lua +++ b/scripts/genie.lua @@ -374,6 +374,16 @@ function exampleProjectDefaults() "GLESv2", } + configuration { "android*", "Debug" } + linkoptions { + "-Wl,-soname,lib" .. project().name .. "Debug.so" + } + + configuration { "android*", "Release" } + linkoptions { + "-Wl,-soname,lib" .. project().name .. "Release.so" + } + configuration { "wasm*" } kind "ConsoleApp"