7 lines
347 B
Python
Executable File
7 lines
347 B
Python
Executable File
#!/bin/bash
|
|
|
|
slangc 09_shader_base.slang -entry vertMain -entry fragMain -o 09_shader_base.spv
|
|
bear -- gcc -g -DNDEBUG -DVK_NO_PROTOTYPES -I$VULKAN_SDK/include -Iwapp/dist/include/ -Icglm/include -Lwapp/dist/lib/ $VULKAN_SDK/include/volk/volk.c main.c -lSDL3 -lwapp -lm -o main
|
|
clang -Icglm/include mat.c -lm -o cmat
|
|
clang++ mat.cc -lglm -o ccmat
|