1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-04 12:00:25 +00:00

[iOS] Remove plugins from modules.

This commit is contained in:
Sergey Minakov
2021-01-17 14:33:39 +03:00
parent 49b5776e8b
commit 13a6a83b44
41 changed files with 0 additions and 3575 deletions

View File

@@ -45,18 +45,6 @@ for name, path in env.module_list.items():
else:
SConscript(path + "/SCsub") # Custom.
# Some modules are not linked automatically but can be enabled optionally
# on iOS, so we handle those specially.
if env["platform"] == "iphone" and name in [
"arkit",
"camera",
"camera_iphone",
"gamecenter",
"inappstore",
"icloud",
]:
continue
lib = env_modules.add_library("module_%s" % name, env.modules_sources)
env.Prepend(LIBS=[lib])
if env["vsproj"]: