Sublime Forum

Run C++ in Linux terminal

#1

How shoud I change C++ build file to be able to run my software in new terminal window? The best way - is the run script like in the geany: program runs, working and after the end there’ssome information and terminal closes by hitting enter.
Current C== build file:

[code]{
“cmd”: “g++”, “${file}”, “-o”, “${file_path}/${file_base_name}”],
“file_regex”: “^(…^:]):([0-9]+):?([0-9]+)?:? (.)$”,
“working_dir”: “${file_path}”,
“selector”: “source.c, source.c++”,

"variants":

	{
		"name": "Run",
		"cmd": "bash", "-c", "g++ '${file}' -o '${file_path}/${file_base_name}' && '${file_path}/${file_base_name}'"]
	}
]

}
[/code]

0 Likes