VSCode config

This commit is contained in:
2018-05-05 22:19:54 +02:00
parent 90de728726
commit 306d6c1307
4 changed files with 94 additions and 0 deletions

BIN
.vscode/.BROWSE.VC.DB vendored Normal file

Binary file not shown.

61
.vscode/c_cpp_properties.json vendored Normal file
View File

@@ -0,0 +1,61 @@
{
"configurations": [
{
"name": "Mac",
"includePath": [
"/usr/include"
],
"browse": {
"limitSymbolsToIncludedHeaders": true,
"databaseFilename": "",
"path": [
"/usr/include",
"${workspaceRoot}"
]
},
"intelliSenseMode": "clang-x64",
"macFrameworkPath": [
"/System/Library/Frameworks",
"/Library/Frameworks"
]
},
{
"name": "Linux",
"includePath": [
"/usr/include"
],
"browse": {
"limitSymbolsToIncludedHeaders": true,
"databaseFilename": "",
"path": [
"/usr/include",
"${workspaceRoot}"
]
},
"intelliSenseMode": "clang-x64"
},
{
"name": "Win32",
"includePath": [
"C:\\msys64\\mingw64\\include",
"C:\\msys64\\mingw64\\x86_64-w64-mingw32\\include"
],
"browse": {
"limitSymbolsToIncludedHeaders": true,
"databaseFilename": "",
"path": [
"C:\\msys64\\mingw64\\include",
"C:\\msys64\\mingw64\\x86_64-w64-mingw32\\include",
"${workspaceRoot}"
]
},
"intelliSenseMode": "msvc-x64",
"cStandard": "c11",
"cppStandard": "c++17",
"defines": [
"WIN32"
]
}
],
"version": 3
}

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

@@ -0,0 +1,25 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "(gdb) Launch",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceRoot}/filesync.exe",
"args": ["copy","D:\\source","F:\\source"],
"stopAtEntry": false,
"cwd": "${workspaceRoot}",
"environment": [],
"externalConsole": true,
"MIMode": "gdb",
"miDebuggerPath": "C:\\msys64\\mingw64\\bin\\gdb.exe",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
]
}
]
}

8
.vscode/settings.json vendored Normal file
View File

@@ -0,0 +1,8 @@
{
"files.associations": {
"filenode.c": "cpp",
"fileutil.c": "cpp",
"util.c": "cpp",
"winbase.h": "c"
}
}