Skip to content

TheCodingude/Build-Tool

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

27 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Build System for literally anything you can do in the command line

simple thing to run terminal commands so i dont have to type them out everytime

Runs commands from the BUILD file

Quick Start

Compile the program

g++ main.cpp -o build
./build

Build Features

Just running any terminal commands

g++ main.cpp -o build 
echo Hi Mom!

Variables to store things

Flags = "-Wextra -Werror -Wall"

g++ main.cpp -o build Flags

Ability to run commands while user is on a specific operating system

[WINDOWS]

echo this will only run on windows :D

[LINUX]

echo this will only run on linux :D

[MAC]

echo this will only run on Mac Os :|

ability to save all output to a file with the OUTPUT keyword like this:

output [FILENAME]

About

Make ripoff but better (kind of)

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages