mirror of
https://github.com/godotengine/godot-cpp-template.git
synced 2025-12-31 21:48:10 +03:00
Include env["suffix"] in binary names for macOS and iOS
This commit is contained in:
@@ -50,7 +50,7 @@ filepath = ""
|
||||
|
||||
if env["platform"] == "macos" or env["platform"] == "ios":
|
||||
filepath = "{}.framework/".format(env["platform"])
|
||||
file = "{}.{}.{}".format(libname, env["platform"], env["target"])
|
||||
file = "{}{}".format(libname, env["suffix"])
|
||||
|
||||
libraryfile = "bin/{}/{}{}".format(env["platform"], filepath, file)
|
||||
library = env.SharedLibrary(
|
||||
|
||||
Reference in New Issue
Block a user