Skip to content

Instantly share code, notes, and snippets.

@michaelbartnett
Created July 31, 2018 03:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save michaelbartnett/13a4e73addf93527b7a52467d5293193 to your computer and use it in GitHub Desktop.
Save michaelbartnett/13a4e73addf93527b7a52467d5293193 to your computer and use it in GitHub Desktop.
getting vscode to do c++ stuff, using ms-vscode.cpptools-0.17.7
{
// 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",
// this is the executable that my build_macosx.sh spits out
"program": "${workspaceFolder}/build/gmake.macosx/bin/Debug/mikescript",
"args": [],
"cwd": "${workspaceFolder}",
"environment": [],
"MIMode": "lldb"
}
]
}
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "build_macosx",
"type": "shell",
"command": "${workspaceFolder}/scripts/build_macosx.sh",
"group": {
"kind": "build",
"isDefault": true
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment