Hi devs,
Ever thought that writing CMake at 3am was tedious, you might have read about a project creating script in my previous blog. That script was for not just C, it was for multiple languages.
sbor is a project manager for C which is inspired by cargo. It provides familiar commands like
sbor init to create a new C project which uses CMake to create the Makefile.
sbor build, builds th ebinary using CMake and make
sbor run builds and runs the binary.
sbor add <header> adds a system header like string.h or math.h
sbor remove <header removes the header.
I hope this helps create a better experience for eith Rust devs using C (Not gonna happen I know) and/or beginners to C.
Here is the link
Link