diff options
author | Sergey Minakov <naithar@icloud.com> | 2021-01-17 14:33:39 +0300 |
---|---|---|
committer | Sergey Minakov <naithar@icloud.com> | 2021-01-17 14:33:39 +0300 |
commit | 13a6a83b4487ae9cdbeff959f1bb0e1241afee4d (patch) | |
tree | eeca319b2da24ca9b72dd80bac96c95e7814bef6 /modules/SCsub | |
parent | 49b5776e8bd62b4bfb6511cca770611b6a3062e4 (diff) |
[iOS] Remove plugins from modules.
Diffstat (limited to 'modules/SCsub')
-rw-r--r-- | modules/SCsub | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/modules/SCsub b/modules/SCsub index 24598f4b28..64da3bd0be 100644 --- a/modules/SCsub +++ b/modules/SCsub @@ -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"]: |