Skip to content

Latest commit

 

History

History
17 lines (15 loc) · 465 Bytes

README.md

File metadata and controls

17 lines (15 loc) · 465 Bytes

nobuild.odin

single-file build system for odin inspired by Tsoding's nobuild.c

How to use

  1. Copy nobuild.odin to your project folder
  2. Create mybuild.odin
  package nobuild
  main :: proc() {
    run("odin", "build", "src", "-out:myprogram.exe")
  }
  1. Compile build script odin build . -out:build.exe
  2. Run build script

More featureful example you can see there pvm