diff options
Diffstat (limited to '.build')
| -rw-r--r-- | .build | 18 |
1 files changed, 18 insertions, 0 deletions
@@ -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 +) |
