GitHub - build-cpp/cmkr: Modern build system based on CMake and TOML.
cmkr
cmkr, pronounced "cmaker", is a modern build system based on CMake and TOML.
cmkr parses cmake.toml files and generates a modern, idiomatic CMakeLists.txt for you. A minimal example:
[project]
name = "cmkr_for_beginners"
[target.hello_world]
type = "executable"
sources = ["src/main.cpp"]
cmkr can bootstrap itself and you only need CMake and a C++ compiler to use it.
Getting started
To get started, run the following commands from your project directory:
curl https://raw.githubusercontent.com...
Read more at github.com