An open API service indexing awesome lists of open source software.

https://github.com/codehz/nimake

Buildscript written by nim
https://github.com/codehz/nimake

Last synced: about 2 months ago
JSON representation

Buildscript written by nim

Awesome Lists containing this project

README

          

Another Build System Written By NIM
===

Examples:

```nim
import nimake

target "bin/execute"
depIt: walkPattern "src/*.c"
depIt: walkPattern "src/*.h"
main: "src/main.c"
receipt:
let depline = deps.join " "
exec &"gcc -o {target} {depline}"

handleCLI()
```