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
- Host: GitHub
- URL: https://github.com/codehz/nimake
- Owner: codehz
- Created: 2018-07-11T11:59:35.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2020-12-22T12:59:01.000Z (about 5 years ago)
- Last Synced: 2025-03-11T06:25:53.265Z (11 months ago)
- Language: Nim
- Size: 96.7 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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()
```