aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Spartan322 <Megacake1234@gmail.com>2024-07-06 13:04:28 +0200
committer Spartan322 <Megacake1234@gmail.com>2024-07-06 13:04:28 +0200
commitf70f3048d551c526a22e76b691d4770f02326fa8 (patch)
treed6244187bc364fd64d01b264d13db7ca103c6d42
parent8c8b9349e26b4f606e18810a201ff378eaac19b2 (diff)
Add mattreecebentley/plf_colonyadd/colony
Resolves #141
-rw-r--r--.gitmodules3
-rw-r--r--deps/SCsub10
m---------deps/plf_colony0
3 files changed, 12 insertions, 1 deletions
diff --git a/.gitmodules b/.gitmodules
index a976f33..e4a550f 100644
--- a/.gitmodules
+++ b/.gitmodules
@@ -10,3 +10,6 @@
[submodule "deps/ordered-map"]
path = deps/ordered-map
url = https://github.com/Tessil/ordered-map
+[submodule "deps/plf_colony"]
+ path = deps/plf_colony
+ url = https://github.com/mattreecebentley/plf_colony
diff --git a/deps/SCsub b/deps/SCsub
index b26e595..1afdd85 100644
--- a/deps/SCsub
+++ b/deps/SCsub
@@ -24,6 +24,14 @@ def build_ordered_map(env):
env.Append(CPPPATH=env.ordered_map["INCPATH"])
env.exposed_includes += env.ordered_map["INCPATH"]
+def build_colony(env):
+ include_path = "plf_colony"
+ env.colony = {}
+ env.colony["INCPATH"] = [env.Dir(include_path)]
+ env.Append(CPPPATH=env.colony["INCPATH"])
+ env.exposed_includes += env.colony["INCPATH"]
+
build_openvic_dataloader(env)
build_lexy_vdf(env)
-build_ordered_map(env) \ No newline at end of file
+build_ordered_map(env)
+build_colony(env) \ No newline at end of file
diff --git a/deps/plf_colony b/deps/plf_colony
new file mode 160000
+Subproject fbc8483fb785c431dc4410396815abf886728c4