Commit 04dd12d8 by Ben Clayton

.gitignore: .vscode/settings.json & .vscode/launch.json

This is per-user data and can easily contain paths to directories outside of the project. Also remove .vscode/launch.json. Change-Id: Iefedc52ec8446d4b6de5e6026761359ac9ac1a0f Reviewed-on: https://swiftshader-review.googlesource.com/c/SwiftShader/+/28069 Presubmit-Ready: Ben Clayton <bclayton@google.com> Tested-by: 's avatarBen Clayton <bclayton@google.com> Reviewed-by: 's avatarNicolas Capens <nicolascapens@google.com> Kokoro-Presubmit: kokoro <noreply+kokoro@google.com>
parent 51d98676
...@@ -8,6 +8,10 @@ ...@@ -8,6 +8,10 @@
.vscode/ipch .vscode/ipch
CMakeFiles/ CMakeFiles/
# Per user vscode config files.
.vscode/launch.json
.vscode/settings.json
# The /build/ directory is recommended for CMake build output and should be # The /build/ directory is recommended for CMake build output and should be
# ignored, except for Visual Studio project files that we check into the # ignored, except for Visual Studio project files that we check into the
# repository and regenerate with build/cmake.sh # repository and regenerate with build/cmake.sh
......
{
"version": "0.2.0",
"configurations": [
{
"name": "Gnome",
"type": "cppdbg",
"request": "launch",
"preLaunchTask": "make",
"program": "${workspaceRoot}/debug/OGLESIntroducingPVRApi",
"args": ["LD_LIBRARY_PATH=./"],
"stopAtEntry": false,
"cwd": "${workspaceRoot}/debug/",
"environment": [],
"externalConsole": true,
"linux": {
"MIMode": "gdb",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
]
},
"osx": {
"MIMode": "lldb"
},
"windows": {
"MIMode": "gdb",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
]
}
},
{
"name": "Glass",
"type": "cppdbg",
"request": "launch",
"preLaunchTask": "make",
"program": "${workspaceRoot}/debug/OGLESGlass",
"args": ["LD_LIBRARY_PATH=./"],
"stopAtEntry": false,
"cwd": "${workspaceRoot}/debug/",
"environment": [],
"externalConsole": true,
"linux": {
"MIMode": "gdb",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
]
},
"osx": {
"MIMode": "lldb"
},
"windows": {
"MIMode": "gdb",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
]
}
},
{
"name": "SubzeroTest",
"type": "cppdbg",
"request": "launch",
"preLaunchTask": "make",
"program": "${workspaceRoot}/debug/SubzeroTest",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceRoot}",
"environment": [],
"externalConsole": true,
"linux": {
"MIMode": "gdb",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
]
},
"osx": {
"MIMode": "lldb"
},
"windows": {
"MIMode": "gdb",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
]
}
},
{
"name": "OGLES2HelloAPI",
"type": "cppdbg",
"request": "launch",
"preLaunchTask": "make",
"program": "${workspaceRoot}/debug/OGLES2HelloAPI",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceRoot}",
"environment": [],
"externalConsole": true,
"linux": {
"MIMode": "gdb",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
]
},
"osx": {
"MIMode": "lldb"
},
"windows": {
"MIMode": "gdb",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
]
}
},
{
"name": "C++ Attach",
"type": "cppdbg",
"request": "attach",
"program": "enter program name, for example ${workspaceRoot}/a.out",
"processId": "${command:pickProcess}",
"linux": {
"MIMode": "gdb",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
]
},
"osx": {
"MIMode": "lldb"
},
"windows": {
"MIMode": "gdb",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
]
}
}
]
}
\ 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