ox

The Ox programming language, compiler and tools (WIP)
Log | Files | Refs | README | LICENSE

launch.json (518B)


      1 {
      2     "version": "0.2.0",
      3     "configurations": [
      4         {
      5             "name": "Build & Debug",
      6             "type": "cppdbg",
      7             "request": "launch",
      8             "program": "${workspaceFolder}/oxc",
      9             "args": [
     10                 "${workspaceFolder}/ex2.ox"
     11             ],
     12             "stopAtEntry": false,
     13             "cwd": "${fileDirname}",
     14             "environment": [],
     15             "externalConsole": false,
     16             "MIMode": "lldb",
     17             "preLaunchTask": "build-ox"
     18         }
     19     ]
     20 }