Skip to content

Commit

Permalink
curl, git, and sqlite plugins moved to extra repo
Browse files Browse the repository at this point in the history
  • Loading branch information
samtupy committed Oct 27, 2024
1 parent b46430d commit c80cfd0
Show file tree
Hide file tree
Showing 20 changed files with 3 additions and 17,574 deletions.
4 changes: 2 additions & 2 deletions SConstruct
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ env.Append(CPPPATH = ["#ASAddon/include", "#dep"], LIBPATH = ["#build/lib"])
# plugins
plugin_env = env.Clone()
static_plugins = []
for s in Glob("plugin/*/_SConscript") + Glob("plugin/*/SConscript"):
plugname = str(s).split(os.path.sep)[1]
for s in Glob("plugin/*/_SConscript") + Glob("plugin/*/SConscript") + Glob("extra/plugin/integrated/*/_SConscript") + Glob("extra/plugin/integrated/*/SConscript"):
plugname = str(s).split(os.path.sep)[-2]
if ARGUMENTS.get(f"no_{plugname}_plugin", "0") == "1": continue
plug = SConscript(s, variant_dir = f"build/obj_plugin/{plugname}", duplicate = 0, exports = {"env": plugin_env, "nvgt_env": env})
if plug: static_plugins.append(plug)
Expand Down
15 changes: 0 additions & 15 deletions plugin/curl/_SConscript

This file was deleted.

Loading

0 comments on commit c80cfd0

Please sign in to comment.