Standardise and make ECS more robust
This commit is contained in:
parent
b9aaeb62c9
commit
2ba1022f79
13 changed files with 245 additions and 232 deletions
7
Makefile
7
Makefile
|
|
@ -1,18 +1,25 @@
|
|||
build-shaders:
|
||||
./sokol-shdc -i shaders/src/cube.glsl -o shaders/out/cube.odin -l metal_macos -f sokol_odin
|
||||
./sokol-shdc -i shaders/src/outline.glsl -o shaders/out/outline.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
|
||||
|
||||
build-release: build-shaders
|
||||
odin build . -o:speed -use-single-module
|
||||
|
||||
run: build-shaders
|
||||
odin run . -use-single-module
|
||||
|
||||
run-debug: build-shaders
|
||||
odin run . -debug -use-single-module
|
||||
|
||||
run-release: build-shaders
|
||||
odin run . -o:speed -use-single-module
|
||||
|
||||
check: build-shaders
|
||||
odin strip-semicolon .
|
||||
odin check .
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue