-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.codio
19 lines (18 loc) · 1009 Bytes
/
.codio
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
// This file is used to configure the three buttons along Codio's top menu.
// Run button configuration
"commands": {
"Compile & Run": "g++ -o {{filename_no_ext}} {{filename}} && ./{{filename_no_ext}}",
"Compile": "g++ -o {{filename_no_ext}} {{filename}}",
"Run": "./{{filename_no_ext}}"
},
// Preview button configuration
"preview": {
"Project Index (static)": "https://{{domain}}/{{index}}",
"Current File (static)": "https://{{domain}}/{{filepath}}",
"Box URL": "http://{{domain3000}}/",
"Box URL SSL": "https://{{domain3000}}/"
},
// Debugger target button configuration
"debugger": [{"type":"GDB","command":"/tmp/program83b0717fa37e2e0346bafc8c1429cb87 ","before":"g++ -g {{filepath}} -o /tmp/program83b0717fa37e2e0346bafc8c1429cb87","single":true,"lang":"cpp","additionalCompilerFlags":"","sourcePath":"{{filepath}}","args":"","uuid":"63f293ba-8385-602d-bcbe-7b86f94c9c58","name":"Debug Current File"}]
}