A simple build tool for building C and C++ applications
The tool is still in development.
Write a configwin32.toml for windows and configlinux.toml for linux
[x] Multithreaded [x] Can generate compile_commnds.json [x] Auto add project libraries to other targets
Sample file ``` [build] compiler = "g++" builddir = "./NomuEngine/bin" objdir = "./NomuEngine/obj_win"
[[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 = "./Nomu_Engine/Game/src" type = "exe" cflags = "-g -Wall" libs = "-static-libstdc++" deps = ["libengine"] ```
All keys mentioned are mandatory.
Install with cargo install For subcommands run with -h flag
To see a real project being built with the tool Nomu_Engine