Added gitignore and vscode dependancy

This commit is contained in:
Ben
2018-11-28 16:01:42 +00:00
parent 93e2e109e5
commit 6d6e9b7fd0
2 changed files with 28 additions and 0 deletions

1
.gitignore vendored
View File

@@ -1,4 +1,5 @@
CMakeFiles/
CMakeCache.txt
build/
cmake_install.cmake
Makefile

27
.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,27 @@
{
// 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": "(gdb) Launch",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/bin/crumpet-engine",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}/src",
"environment": [],
"externalConsole": true,
"MIMode": "gdb",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
]
}
]
}