From 532df0ac7ffaaee037dbb22985e29aeca605d088 Mon Sep 17 00:00:00 2001 From: "Alejandro W. Sior" Date: Thu, 2 Feb 2023 11:05:01 +0100 Subject: chisel: initial commit --- .build | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .build (limited to '.build') diff --git a/.build b/.build new file mode 100644 index 0000000..4c3789e --- /dev/null +++ b/.build @@ -0,0 +1,18 @@ +this.include_dirs = [Path('.').resolve()] +this.objects = [] +this.deps = [] + +this('chisel') + +this.objects += this.cpp.cc( + 'main.cpp', + + include_dirs = this.include_dirs, + dependencies = this.deps +) + +chisel = this.cpp.exe('chtest', + this.objects, + + dependencies = this.deps +) -- cgit v1.2.3