Skip to content

realdev04/AutoCompiler

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

AutoCompiler

Introduction

An Auto Compiling tool for MinGw C/C++ which Compiles your C/C++ Code once it's changes are Saved.

Download Binaries

You can Download Binaries from our Website Downloads

Installation

Go and Read our Website Docs

Configuration

Go and Read our Website Docs

Usage

Auto compiler is a Very easy to use Tool.

If you would like to pass the Names of the Files as a CMD Argument, the Syntax will look like similar to this.
autocmp [.c/.cpp/.h and .hpp File Names] -o [Output Name] += [Compiler Arguments(Optional)] +=

A simplest example using autocmp.
Example:

autocmp main.cpp -o main


In autocmp, you can directly pass Compiler Arguments to the Compiler(in between += symbol). Such as, Include Path, Library Directory, Libraies to Link ,etc. Instead of -c and -o.
Example:

autocmp main.cpp src/test.cpp header/test.h -o main += -Iinclude -Llibs -lmyLib +=


If you would like to pass the Names of the Files as a File, the Syntax will look like similar to this.

autocmp -f [File Name contains file list] -o [Output Name] += [Compiler Arguments(Optional)] +=



An Example for passing the Name of the File which Contains the File List.

Example:

autocmp -f fileList.atc -o main += -Iinclude -Llibs -lmylib +=


The file fileList.atc will look like something like this.

main.cpp
src/test.cpp
header/test.h

Support

Please feel free to Support Me.
PayPal: https://www.paypal.com/donate?hosted_button_id=XWDYWBW5RJ5DJ
Patreon: https://www.patreon.com/realdev04
Thank You!