{ // See https://go.microsoft.com/fwlink/?LinkId=733558 // for the documentation about the tasks.json format "version":"2.0.0", "tasks":[ { "label":"echo", "type":"shell", "command":"echo Hello" } ] }
{ // See https://go.microsoft.com/fwlink/?LinkId=733558 // for the documentation about the tasks.json format "version":"2.0.0", "tasks":[ { "label":"run_cmake", "type":"shell", "command":"mkdir -p ./build; cd ./build; cmake -DCMAKE_BUILD_TYPE=Debug ..; make -j8;", "group":{ "kind":"build", "isDefault":true } }, { "label":"clean", "type":"shell", "command":"make clean", } ] }
{ // Use IntelliSense to learn about possible attributes. // Hover to view descriptions of existing attributes. // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 "version":"0.2.0", "configurations":[ { "name":"(lldb) Launch", "type":"cppdbg", "request":"launch", "program":"enter program name, for example ${workspaceFolder}/a.out", "args":[], "stopAtEntry":false, "cwd":"${fileDirname}", "environment":[], "externalConsole":false, "MIMode":"lldb" } ] }