La simu multi-agents qui repeint une image, mais en c++ Boilerplate pompé ici : https://github.com/andrew-r-king/sfml-vscode-boilerplate
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

launch.json 1.1KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "version": "0.2.0",
  3. "configurations": [
  4. {
  5. "name": "GDB/LLDB",
  6. "type": "cppdbg",
  7. "request": "launch",
  8. "program": "${workspaceFolder}/bin/Debug/${workspaceRootFolderName}.exe",
  9. "args": [],
  10. "stopAtEntry": false,
  11. "cwd": "${workspaceFolder}",
  12. "preLaunchTask": "Build: Debug",
  13. "externalConsole": false,
  14. "internalConsoleOptions": "neverOpen",
  15. "setupCommands": [
  16. {
  17. "description": "Enable pretty-printing for gdb",
  18. "text": "-enable-pretty-printing",
  19. "ignoreFailures": true
  20. }
  21. ],
  22. "windows": {
  23. "MIMode": "gdb",
  24. "miDebuggerPath": "C:/mingw32/bin/gdb.exe",
  25. "env": {
  26. "Path": "${config:terminal.integrated.env.windows.Path}"
  27. }
  28. },
  29. "linux": {
  30. "program": "${workspaceFolder}/bin/Debug/${workspaceRootFolderName}",
  31. "MIMode": "gdb",
  32. "miDebuggerPath": "/usr/bin/gdb",
  33. "env": {
  34. "PATH": "${config:terminal.integrated.env.linux.PATH}",
  35. }
  36. },
  37. "osx": {
  38. "program": "${workspaceFolder}/bin/Debug/${workspaceRootFolderName}",
  39. "MIMode": "lldb",
  40. "env": {
  41. "PATH": "${config:terminal.integrated.env.osx.PATH}",
  42. }
  43. },
  44. }
  45. ]
  46. }