Initial commit
This commit is contained in:
commit
ac0d491786
21 changed files with 1094 additions and 0 deletions
18
Makefile
Normal file
18
Makefile
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
build-shaders:
|
||||
./sokol-shdc -i shader.glsl -o shader.odin -l metal_macos -f sokol_odin
|
||||
build: build-shaders
|
||||
odin build . -use-single-module
|
||||
|
||||
build-debug: build-shaders
|
||||
odin build . -debug -use-single-module
|
||||
|
||||
run: build-shaders
|
||||
odin run . -use-single-module
|
||||
|
||||
run-debug: build-shaders
|
||||
odin run . -debug -use-single-module
|
||||
|
||||
check: build-shaders
|
||||
odin strip-semicolon .
|
||||
odin check .
|
||||
odin test . -use-single-module
|
||||
Loading…
Add table
Add a link
Reference in a new issue