diff options
author | George L. Albany <Megacake1234@gmail.com> | 2023-09-28 16:32:20 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-28 16:32:20 +0200 |
commit | d21255b2ca2fe6cea7f41e88fbb22d138bac74eb (patch) | |
tree | 358e84a1556d83bdc5495fb7da3f357096e9ed33 | |
parent | 8256fe4c9468e23f5397d92796a741893b9469bc (diff) | |
parent | a5c579d1419f2a1e313268faa696b879cea31252 (diff) |
Merge pull request #36 from OpenVicProject/add/lexy-vdf
-rw-r--r-- | .gitmodules | 3 | ||||
-rw-r--r-- | deps/SCsub | 10 | ||||
m--------- | deps/lexy-vdf | 0 |
3 files changed, 12 insertions, 1 deletions
diff --git a/.gitmodules b/.gitmodules index cfed717..301d555 100644 --- a/.gitmodules +++ b/.gitmodules @@ -4,3 +4,6 @@ [submodule "scripts"] path = scripts url = https://github.com/OpenVicProject/scripts +[submodule "deps/lexy-vdf"] + path = deps/lexy-vdf + url = https://github.com/OpenVicProject/lexy-vdf.git @@ -9,4 +9,12 @@ def build_openvic_dataloader(env): env.Append(CPPPATH=ovdl_env.openvic_dataloader["INCPATH"]) env.openvic_dataloader = ovdl_env.openvic_dataloader -build_openvic_dataloader(env)
\ No newline at end of file +def build_lexy_vdf(env): + lvdf_env = SConscript("lexy-vdf/SConstruct") + env.Append(LIBPATH=lvdf_env.lexy_vdf["LIBPATH"]) + env.Prepend(LIBS=lvdf_env.lexy_vdf["LIBS"]) + env.Append(CPPPATH=lvdf_env.lexy_vdf["INCPATH"]) + env.lexy_vdf = lvdf_env.lexy_vdf + +build_openvic_dataloader(env) +build_lexy_vdf(env)
\ No newline at end of file diff --git a/deps/lexy-vdf b/deps/lexy-vdf new file mode 160000 +Subproject 2bd61a3d9f9aeedda101fdaa6889d6761310bc8 |