Hello sublimers
I was actually browsing through the internet for a build that would allow me to run C++ on a split screen with input and output file and happened to stumble upon this code
{
“cmd”: [“g++.exe”,"-std=c++14", “${file}”, “-o”, “${file_base_name}.exe”, “&&” , “${file_base_name}.exe<input.in>output.in”],
“selector”:“source.cpp”,
“file_regex”: “^(…[^:]):([0-9]+):?([0-9]+)?:? (.)$”,
“shell”:true,
“working_dir”:"$file_path"
}
which works fine
But would anyone me kind enough to tell me what each line actually does, in the background and especially the (-std=c++14) in the first line
and any tweaks that I should add to this to make my coding experience better
Thank you!