BUILDER_CPP

A simple build tool for building C and C++ applications

The tool is still in development.

Usage

Write a configwin32.toml for windows and configlinux.toml for linux

Features

Sample file with a library and an executable ``` [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 [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

Installation

The tool requires cargo for installation cargo install builder_cpp For subcommands run with -h flag

To see a real project being built with the tool Nomu_Engine