Compiles C++ source files. Part of GCC (GNU Compiler Collection).
g++ {{source.cpp}} -o {{output_executable}}
g++ {{source.cpp}} -Wall -o {{output_executable}}
g++ {{source.cpp}} -std={{language_standard}} -o {{output_executable}}
g++ {{source.cpp}} -o {{output_executable}} -I{{header_path}} -L{{library_path}} -l{{library_name}}