aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Hop311 <Hop3114@gmail.com>2024-07-14 16:02:31 +0200
committer GitHub <noreply@github.com>2024-07-14 16:02:31 +0200
commitb9b35ad9536cfdcd61f5208eeaad7ead4bd0418d (patch)
tree709cc58c28b89636464094efff235c547ed1cbdd
parent9479a873095e23503994a0ef3b675b06320df4b9 (diff)
parentf70f3048d551c526a22e76b691d4770f02326fa8 (diff)
Merge pull request #170 from OpenVicProject/add/colony
Add mattreecebentley/plf_colony
-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