Caution
This project is in a work in progress, the API will change a lot until its first release.
CB is an header-only library build system that use the C language to compile C code.
With CB you can describe your C project in a .c file (cb.c) which will be compiled into an executable (cb.exe) that will compile your project (my_project.exe).
Using C language to compile C code prevent to use of heavy dependencies like cmake, premake or any other build system that brings its own language.
Of course, you still need some shell or .bat, .sh file to invoke the C compiler the first time.
I used cmake, qmake, qbs, premake, and none of them satisfied me for various reasons. Sometimes it's because the syntax is a mess (cmake), sometime it's very difficult to make simple API, they use their own language and your spend a significant amount of time fighting the abstraction over the underlaying toolchain.
Here is a simple example to create a static library.
#define CB_IMPLEMENTATION
#include <cb/cb.h>
int main()
{
cb_init();
/* Create "example" project. Every following properties will be assigned to it */
cb_project("example");
/* Make it a static library. */
cb_set("binary_type", "static_library");
/* Add source files. */
cb_add("files","src/foo.c");
cb_add("files","src/bar.c");
/* Build the current project based on the default toolchain (C toolchain).
The resulting binary will be called "example.lib" (msvc) or "libexample.a" (gcc) */
if(!cb_bake())
{
return -1;
}
cb_destroy();
return 0;
}
Creating a dynamic library is basically the same with a different "binary_type" value.
#define CB_IMPLEMENTATION
#include <cb/cb.h>
int main()
{
cb_init();
/* Create "example" project. Every following properties will be assigned to it */
cb_project("example");
/* Make it a shared library. */
cb_set("binary_type", "shared_library");
/* Add source files. */
cb_add("files","src/foo.c");
cb_add("files","src/bar.c");
/* Build the current project based on the default toolchain (C toolchain).
The resulting binary will be called "example.lib" (msvc) or "libexample.a" (gcc) */
if(!cb_bake())
{
return -1;
}
cb_destroy();
return 0;
}
You can see how CB was added to GLFW, which can be used to create the shared or the static library.
For more examples you can also look at the tests/ folder.
Properties are added to a "project" (source files, c flags, include directories, etc) and those properties are processed depending on the toolchain used.
It should be fairly simple to create a new toolchain that generate a Visual Studio .sln project or a cmake project without changing any of the properties.
- Support Microsoft Windows with MSVC toolchain.
- Support Linux with gcc toolchain.
- Can build static library, shared library and executable.
- Handle utf-8 names. (not supported for .dlls on Windows, see limitations below).
- Handle extensions.
- This is designed to do full compilation everytime. Maybe we can create and extension in the future to only compile what is needed but it's not the priority at all.
- .dlls on Windows can only contains ANSI characters.
- It's using C language. It's debuggable and the availability of C compilers is very high on all common platforms.
- You can use your own C libraries.
- It's using C language.