summaryrefslogtreecommitdiff
path: root/.build
diff options
context:
space:
mode:
authorAlejandro Sior <aho@sior.be>2022-09-13 15:27:35 +0200
committerAlejandro Sior <aho@sior.be>2022-09-13 15:27:35 +0200
commitddedac846b0788e3cff90a24b2c8109308b1e840 (patch)
treeae79b5d04117704b33b47b6f1dc5bdfba43db2fe /.build
parent533fc1eb6e1a2327ef6f1acb04cc3bd9983d97d5 (diff)
cook: simplified the module system
Diffstat (limited to '.build')
-rw-r--r--.build8
1 files changed, 6 insertions, 2 deletions
diff --git a/.build b/.build
index cef5b7a..2b5b4dd 100644
--- a/.build
+++ b/.build
@@ -1,2 +1,6 @@
-mod.submodule("test")
-mod.mkexe("vol") \ No newline at end of file
+mod["ld_args"] = []
+mod["deps"] = []
+
+mod["vol"] = mod.exe("vol",
+ mod("test").link,
+ deps = mod.deps) \ No newline at end of file