I squished over 10hrs of footage together to be as short as possible, I hope it's still coherent!
@ShivSindhu0886 күн бұрын
Windows : wasting hours on setup and having barely any time to learn. Linux : Setup in single command and enjoy the learning journey
@мииицАй бұрын
Your voice and idea to combine samples so awesome :D nice video, thanks for effort
@mehmeh88833 ай бұрын
Good video, gonna jump into raylib soon :D
@ForlornU3 ай бұрын
Yeah do it! Was fun 👍
@requestfx558515 күн бұрын
You can use zig with raylib, zig can cross compile and I really like the language. it also comes with its own test and build system, which I much more prefer over cmake
@requestfx558515 күн бұрын
I now watched the full video. From what I can see you only used Makefile and not Cmake. Cmake is a cross platform build system generator which can generate "makefiles, ninja, vs project files, and others) Cmake is not terrible but I much prefer the build system of zig. Even if you dont use the zig language, you can use just the build system for your c project. it can cross compile, supports caching and dependencies. I believe you wouldnt had that much trouble with the build system if you would have used the one from zig. (or cmake, but trust me. give zig build system a shot) I see the zig language as "c 2.0", it natively supports the c abi, it isn't traditional OOP but still has encapsulation concepts. your structs can have functions and static functions, ... you just have to try it for yourself.