A simple build tool for building C and C++ applications
The tool is still in development. Do not use for production code.
The tool requires cargo for installation
console
cargo install builder_cpp
For subcommands run with -h flag
Write a configwin32.toml for windows and configlinux.toml for linux
To create a new project
console
builder_cpp --init <project-name> [--c|--cpp]
For help
console
builder_cpp --help
Sample file with a library and an executable
```toml [build] compiler = "g++"
[[targets]]
name = "libengine"
src = "./NomuEngine/Engine/src/"
includedir = "./Nomu_Engine/Engine/src/include"
type = "dll"
cflags = "-g -Wall -Wunused pkg-config --cflags freetype2
-std=c++17"
libs = "-lm -lglew32 -lglfw3 -lopengl32 -static-libstdc++ pkg-config --libs freetype2
"
[[targets]]
name = "main"
src = "./NomuEngine/Game/src/"
includedir = "./NomuEngine/Game/src"
type = "exe"
cflags = "-g -Wall"
libs = "-static-libstdc++"
deps = ["libengine"]
Sample file with an added package and an executable
toml
[build]
compiler = "g++"
packages = ["Dr-42/NomuEngine, master"]
[[targets]] name = "main" src = "./src" include_dir = "./src" type = "exe" cflags = "-g -Wall " libs = "" deps = ["libengine"] ```
Optional keys in toml are packages in build and deps in targets
To see a real project being built with the tool Nomu_Engine