diff --git a/.vscode/.BROWSE.VC.DB b/.vscode/.BROWSE.VC.DB new file mode 100644 index 0000000..d408b24 Binary files /dev/null and b/.vscode/.BROWSE.VC.DB differ diff --git a/.vscode/c_cpp_properties.json b/.vscode/c_cpp_properties.json new file mode 100644 index 0000000..de0b7e4 --- /dev/null +++ b/.vscode/c_cpp_properties.json @@ -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 +} \ No newline at end of file diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..172a73f --- /dev/null +++ b/.vscode/launch.json @@ -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 + } + ] + } + ] +} \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..f04ab33 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,8 @@ +{ + "files.associations": { + "filenode.c": "cpp", + "fileutil.c": "cpp", + "util.c": "cpp", + "winbase.h": "c" + } +} \ No newline at end of file