summaryrefslogtreecommitdiff
path: root/.build
diff options
context:
space:
mode:
authorAlejandro W. Sior <aho@sior.be>2023-01-23 20:46:04 +0100
committerAlejandro W. Sior <aho@sior.be>2023-01-23 20:46:04 +0100
commita339cff87fc98859e58df8dbc9f9c15a06ed3530 (patch)
tree8a236d7425191c498c6213bca003859b574d9734 /.build
parent165cba8cf353647bfefaa81e035aedbd30c6c7f2 (diff)
cook: bug fixes with argumentsHEADmaster
Diffstat (limited to '.build')
-rw-r--r--.build7
1 files changed, 6 insertions, 1 deletions
diff --git a/.build b/.build
index 7f400fa..37bce4d 100644
--- a/.build
+++ b/.build
@@ -1,5 +1,10 @@
+this.include_dirs = [this.cwd()]
+
test = this('test')
+this.objects = this.c.cc.gen('main.c', include_dirs=this.include_dirs)
+
this.c.exe('vol',
- test.link
+ this.objects,
+ test.objects
)