Commit f3a2d7cf authored by annehe9's avatar annehe9
Browse files

Added vscode files

parent 9fa6f8f3
{
// 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": "Release",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/build_rel/DrawSVG",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}/svg",
"environment": [],
"externalConsole": false,
"MIMode": "gdb",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
],
"preLaunchTask": "Build Release"
},
{
"name": "Debug",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/build_dbg/DrawSVG",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}/svg",
"environment": [],
"externalConsole": false,
"MIMode": "gdb",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
],
"preLaunchTask": "Build Debug"
}
]
}
\ No newline at end of file
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "Build Release",
"type": "shell",
"command": "mkdir build_rel ; pushd build_rel ; CC=clang CXX=clang++ cmake -DCMAKE_BUILD_TYPE=Release .. ; make -j7 ; popd",
"args": [],
"group": "build",
"problemMatcher": "$gcc"
},
{
"label": "Build Debug",
"type": "shell",
"command": "mkdir build_dbg ; pushd build_dbg ; CC=clang CXX=clang++ cmake -DCMAKE_BUILD_TYPE=Debug .. ; make -j7 ; popd",
"args": [],
"group": "build",
"problemMatcher": "$gcc"
}
]
}
\ No newline at end of file
{
// 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": "Release",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/build_rel/DrawSVG",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}/svg",
"environment": [],
"externalConsole": false,
"MIMode": "gdb",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
],
"preLaunchTask": "Build Release"
},
{
"name": "Debug",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/build_dbg/DrawSVG",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}/svg",
"environment": [],
"externalConsole": false,
"MIMode": "gdb",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
],
"preLaunchTask": "Build Debug"
}
]
}
\ No newline at end of file
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "Build Release",
"type": "shell",
"command": "mkdir build_rel ; pushd build_rel ; cmake -DCMAKE_BUILD_TYPE=Release .. ; make -j7 ; popd",
"args": [],
"group": "build",
"problemMatcher": "$gcc"
},
{
"label": "Build Debug",
"type": "shell",
"command": "mkdir build_dbg ; pushd build_dbg ; cmake -DCMAKE_BUILD_TYPE=Debug .. ; make -j7 ; popd",
"args": [],
"group": "build",
"problemMatcher": "$gcc"
}
]
}
\ No newline at end of file
{
// 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": "Release",
"type": "cppvsdbg",
"request": "launch",
"program": "${workspaceFolder}/build/RelWithDebInfo/DrawSVG.exe",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}/svg",
"environment": [],
"externalConsole": false,
"preLaunchTask": "Build Release"
},
{
"name": "Debug",
"type": "cppvsdbg",
"request": "launch",
"program": "${workspaceFolder}/build/Debug/DrawSVG.exe",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}/svg",
"environment": [],
"externalConsole": false,
"preLaunchTask": "Build Debug"
}
]
}
\ No newline at end of file
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "Configure",
"type": "shell",
"group": "build",
"command": "./runcmake_win.bat configure",
"problemMatcher": []
},
{
"label": "Build Release",
"type": "shell",
"command": "./runcmake_win.bat RelWithDebInfo",
"args": [],
"group": "build",
"problemMatcher": "$msCompile"
},
{
"label": "Build Debug",
"type": "shell",
"command": "./runcmake_win.bat Debug",
"args": [],
"group": "build",
"problemMatcher": "$msCompile"
}
]
}
\ No newline at end of file
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment