Wednesday, December 31, 2014

Easy Build Tool

You don't need to type something like these anymore:
C       gcc -o "helloWorld.exe" "helloWorld.c"
C++   g++ -o "helloWorld.exe" "helloWorld.c"
Java Compile   javac "helloWorld.java"
Java  Run File  java "helloWorld"
You can just drag and drop the file that you want to compile / run and the script will
do the command for you. The script can auto detect compilers in the computer.
Maybe you can think this script as a automatic makefile.

The language that is readily available is C, C++, Java and Python.
You can also add your own if you understand how the script works.

Note: You still need to download your own SDK files for script to work.

Recommended C/C++ Compiler:
TDM-GCC (Zip packages)


Updated on 2018-06-02


Language: Windows Batch Script (.bat)

View the source code here:
Easy Compiler 1.4.2

No comments:

Post a Comment