Update VSCode debug config and settings
This commit is contained in:
		
							
								
								
									
										20
									
								
								.vscode/c_cpp_properties.json
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										20
									
								
								.vscode/c_cpp_properties.json
									
									
									
									
										vendored
									
									
										Normal file
									
								
							| @@ -0,0 +1,20 @@ | ||||
| { | ||||
|     "configurations": [ | ||||
|         { | ||||
|             "name": "Mac", | ||||
|             "includePath": [ | ||||
|                 "${workspaceFolder}/**" | ||||
|             ], | ||||
|             "defines": [], | ||||
|             "macFrameworkPath": [ | ||||
|                 "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks" | ||||
|             ], | ||||
|             "compilerPath": "/usr/bin/clang", | ||||
|             "cStandard": "c17", | ||||
|             "cppStandard": "c++17", | ||||
|             "intelliSenseMode": "macos-clang-arm64", | ||||
|             "compileCommands": "${workspaceFolder}/compile_commands.json" | ||||
|         } | ||||
|     ], | ||||
|     "version": 4 | ||||
| } | ||||
							
								
								
									
										16
									
								
								.vscode/launch.json
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										16
									
								
								.vscode/launch.json
									
									
									
									
										vendored
									
									
								
							| @@ -5,7 +5,7 @@ | ||||
|     "version": "0.2.0", | ||||
|     "configurations": [ | ||||
|         { | ||||
|             "name": "Debug main", | ||||
|             "name": "(Linux) Debug main", | ||||
|             "type": "cppdbg", | ||||
|             "request": "launch", | ||||
|             "program": "${workspaceFolder}/main", | ||||
| @@ -17,6 +17,20 @@ | ||||
|             "environment": [], | ||||
|             "externalConsole": false, | ||||
|             "MIMode": "gdb" | ||||
|         }, | ||||
|         { | ||||
|             "name": "(macOS) Debug main", | ||||
|             "type": "cppdbg", | ||||
|             "request": "launch", | ||||
|             "program": "${workspaceFolder}/main", | ||||
|             "args": [ | ||||
|                 "${workspaceFolder}/test_files/menu.json" | ||||
|             ], | ||||
|             "stopAtEntry": false, | ||||
|             "cwd": "${workspaceFolder}", | ||||
|             "environment": [], | ||||
|             "externalConsole": false, | ||||
|             "MIMode": "lldb" | ||||
|         } | ||||
|     ] | ||||
| } | ||||
		Reference in New Issue
	
	Block a user