A silly little game where a robot drives an ambulance.
at main 22 kB view raw
1{ 2 "folders": [ 3 { 4 "name": "CrazyAmbulance", 5 "path": "." 6 }, 7 { 8 "name": "UE5", 9 "path": "/var/home/jason/dev/UE" 10 } 11 ], 12 "settings": { 13 "typescript.tsc.autoDetect": "off", 14 "npm.autoDetect": "off" 15 }, 16 "extensions": { 17 "recommendations": [ 18 "ms-vscode.cpptools", 19 "ms-dotnettools.csharp" 20 ] 21 }, 22 "tasks": { 23 "version": "2.0.0", 24 "tasks": [ 25 { 26 "label": "CrazyAmbulance Linux Debug Build", 27 "group": "build", 28 "command": "Engine/Build/BatchFiles/Linux/Build.sh", 29 "args": [ 30 "CrazyAmbulance", 31 "Linux", 32 "Debug", 33 "/home/jason/dev/CrazyAmbulance_5.5/CrazyAmbulance.uproject", 34 "-waitmutex" 35 ], 36 "problemMatcher": "$msCompile", 37 "type": "shell", 38 "options": { 39 "cwd": "/var/home/jason/dev/UE" 40 } 41 }, 42 { 43 "label": "CrazyAmbulance Linux Debug Rebuild", 44 "group": "build", 45 "command": "Engine/Build/BatchFiles/Linux/Build.sh", 46 "args": [ 47 "CrazyAmbulance", 48 "Linux", 49 "Debug", 50 "/home/jason/dev/CrazyAmbulance_5.5/CrazyAmbulance.uproject", 51 "-waitmutex" 52 ], 53 "problemMatcher": "$msCompile", 54 "dependsOn": [ 55 "CrazyAmbulance Linux Debug Clean" 56 ], 57 "type": "shell", 58 "options": { 59 "cwd": "/var/home/jason/dev/UE" 60 } 61 }, 62 { 63 "label": "CrazyAmbulance Linux Debug Clean", 64 "group": "build", 65 "command": "Engine/Build/BatchFiles/Linux/Build.sh", 66 "args": [ 67 "CrazyAmbulance", 68 "Linux", 69 "Debug", 70 "/home/jason/dev/CrazyAmbulance_5.5/CrazyAmbulance.uproject", 71 "-waitmutex", 72 "-clean" 73 ], 74 "problemMatcher": "$msCompile", 75 "type": "shell", 76 "options": { 77 "cwd": "/var/home/jason/dev/UE" 78 } 79 }, 80 { 81 "label": "CrazyAmbulance Linux DebugGame Build", 82 "group": "build", 83 "command": "Engine/Build/BatchFiles/Linux/Build.sh", 84 "args": [ 85 "CrazyAmbulance", 86 "Linux", 87 "DebugGame", 88 "/home/jason/dev/CrazyAmbulance_5.5/CrazyAmbulance.uproject", 89 "-waitmutex" 90 ], 91 "problemMatcher": "$msCompile", 92 "type": "shell", 93 "options": { 94 "cwd": "/var/home/jason/dev/UE" 95 } 96 }, 97 { 98 "label": "CrazyAmbulance Linux DebugGame Rebuild", 99 "group": "build", 100 "command": "Engine/Build/BatchFiles/Linux/Build.sh", 101 "args": [ 102 "CrazyAmbulance", 103 "Linux", 104 "DebugGame", 105 "/home/jason/dev/CrazyAmbulance_5.5/CrazyAmbulance.uproject", 106 "-waitmutex" 107 ], 108 "problemMatcher": "$msCompile", 109 "dependsOn": [ 110 "CrazyAmbulance Linux DebugGame Clean" 111 ], 112 "type": "shell", 113 "options": { 114 "cwd": "/var/home/jason/dev/UE" 115 } 116 }, 117 { 118 "label": "CrazyAmbulance Linux DebugGame Clean", 119 "group": "build", 120 "command": "Engine/Build/BatchFiles/Linux/Build.sh", 121 "args": [ 122 "CrazyAmbulance", 123 "Linux", 124 "DebugGame", 125 "/home/jason/dev/CrazyAmbulance_5.5/CrazyAmbulance.uproject", 126 "-waitmutex", 127 "-clean" 128 ], 129 "problemMatcher": "$msCompile", 130 "type": "shell", 131 "options": { 132 "cwd": "/var/home/jason/dev/UE" 133 } 134 }, 135 { 136 "label": "CrazyAmbulance Linux Development Build", 137 "group": "build", 138 "command": "Engine/Build/BatchFiles/Linux/Build.sh", 139 "args": [ 140 "CrazyAmbulance", 141 "Linux", 142 "Development", 143 "/home/jason/dev/CrazyAmbulance_5.5/CrazyAmbulance.uproject", 144 "-waitmutex" 145 ], 146 "problemMatcher": "$msCompile", 147 "type": "shell", 148 "options": { 149 "cwd": "/var/home/jason/dev/UE" 150 } 151 }, 152 { 153 "label": "CrazyAmbulance Linux Development Rebuild", 154 "group": "build", 155 "command": "Engine/Build/BatchFiles/Linux/Build.sh", 156 "args": [ 157 "CrazyAmbulance", 158 "Linux", 159 "Development", 160 "/home/jason/dev/CrazyAmbulance_5.5/CrazyAmbulance.uproject", 161 "-waitmutex" 162 ], 163 "problemMatcher": "$msCompile", 164 "dependsOn": [ 165 "CrazyAmbulance Linux Development Clean" 166 ], 167 "type": "shell", 168 "options": { 169 "cwd": "/var/home/jason/dev/UE" 170 } 171 }, 172 { 173 "label": "CrazyAmbulance Linux Development Clean", 174 "group": "build", 175 "command": "Engine/Build/BatchFiles/Linux/Build.sh", 176 "args": [ 177 "CrazyAmbulance", 178 "Linux", 179 "Development", 180 "/home/jason/dev/CrazyAmbulance_5.5/CrazyAmbulance.uproject", 181 "-waitmutex", 182 "-clean" 183 ], 184 "problemMatcher": "$msCompile", 185 "type": "shell", 186 "options": { 187 "cwd": "/var/home/jason/dev/UE" 188 } 189 }, 190 { 191 "label": "CrazyAmbulance Linux Test Build", 192 "group": "build", 193 "command": "Engine/Build/BatchFiles/Linux/Build.sh", 194 "args": [ 195 "CrazyAmbulance", 196 "Linux", 197 "Test", 198 "/home/jason/dev/CrazyAmbulance_5.5/CrazyAmbulance.uproject", 199 "-waitmutex" 200 ], 201 "problemMatcher": "$msCompile", 202 "type": "shell", 203 "options": { 204 "cwd": "/var/home/jason/dev/UE" 205 } 206 }, 207 { 208 "label": "CrazyAmbulance Linux Test Rebuild", 209 "group": "build", 210 "command": "Engine/Build/BatchFiles/Linux/Build.sh", 211 "args": [ 212 "CrazyAmbulance", 213 "Linux", 214 "Test", 215 "/home/jason/dev/CrazyAmbulance_5.5/CrazyAmbulance.uproject", 216 "-waitmutex" 217 ], 218 "problemMatcher": "$msCompile", 219 "dependsOn": [ 220 "CrazyAmbulance Linux Test Clean" 221 ], 222 "type": "shell", 223 "options": { 224 "cwd": "/var/home/jason/dev/UE" 225 } 226 }, 227 { 228 "label": "CrazyAmbulance Linux Test Clean", 229 "group": "build", 230 "command": "Engine/Build/BatchFiles/Linux/Build.sh", 231 "args": [ 232 "CrazyAmbulance", 233 "Linux", 234 "Test", 235 "/home/jason/dev/CrazyAmbulance_5.5/CrazyAmbulance.uproject", 236 "-waitmutex", 237 "-clean" 238 ], 239 "problemMatcher": "$msCompile", 240 "type": "shell", 241 "options": { 242 "cwd": "/var/home/jason/dev/UE" 243 } 244 }, 245 { 246 "label": "CrazyAmbulance Linux Shipping Build", 247 "group": "build", 248 "command": "Engine/Build/BatchFiles/Linux/Build.sh", 249 "args": [ 250 "CrazyAmbulance", 251 "Linux", 252 "Shipping", 253 "/home/jason/dev/CrazyAmbulance_5.5/CrazyAmbulance.uproject", 254 "-waitmutex" 255 ], 256 "problemMatcher": "$msCompile", 257 "type": "shell", 258 "options": { 259 "cwd": "/var/home/jason/dev/UE" 260 } 261 }, 262 { 263 "label": "CrazyAmbulance Linux Shipping Rebuild", 264 "group": "build", 265 "command": "Engine/Build/BatchFiles/Linux/Build.sh", 266 "args": [ 267 "CrazyAmbulance", 268 "Linux", 269 "Shipping", 270 "/home/jason/dev/CrazyAmbulance_5.5/CrazyAmbulance.uproject", 271 "-waitmutex" 272 ], 273 "problemMatcher": "$msCompile", 274 "dependsOn": [ 275 "CrazyAmbulance Linux Shipping Clean" 276 ], 277 "type": "shell", 278 "options": { 279 "cwd": "/var/home/jason/dev/UE" 280 } 281 }, 282 { 283 "label": "CrazyAmbulance Linux Shipping Clean", 284 "group": "build", 285 "command": "Engine/Build/BatchFiles/Linux/Build.sh", 286 "args": [ 287 "CrazyAmbulance", 288 "Linux", 289 "Shipping", 290 "/home/jason/dev/CrazyAmbulance_5.5/CrazyAmbulance.uproject", 291 "-waitmutex", 292 "-clean" 293 ], 294 "problemMatcher": "$msCompile", 295 "type": "shell", 296 "options": { 297 "cwd": "/var/home/jason/dev/UE" 298 } 299 }, 300 { 301 "label": "CrazyAmbulance LinuxArm64 Debug Build", 302 "group": "build", 303 "command": "Engine/Build/BatchFiles/Linux/Build.sh", 304 "args": [ 305 "CrazyAmbulance", 306 "LinuxArm64", 307 "Debug", 308 "/home/jason/dev/CrazyAmbulance_5.5/CrazyAmbulance.uproject", 309 "-waitmutex" 310 ], 311 "problemMatcher": "$msCompile", 312 "type": "shell", 313 "options": { 314 "cwd": "/var/home/jason/dev/UE" 315 } 316 }, 317 { 318 "label": "CrazyAmbulance LinuxArm64 Debug Rebuild", 319 "group": "build", 320 "command": "Engine/Build/BatchFiles/Linux/Build.sh", 321 "args": [ 322 "CrazyAmbulance", 323 "LinuxArm64", 324 "Debug", 325 "/home/jason/dev/CrazyAmbulance_5.5/CrazyAmbulance.uproject", 326 "-waitmutex" 327 ], 328 "problemMatcher": "$msCompile", 329 "dependsOn": [ 330 "CrazyAmbulance LinuxArm64 Debug Clean" 331 ], 332 "type": "shell", 333 "options": { 334 "cwd": "/var/home/jason/dev/UE" 335 } 336 }, 337 { 338 "label": "CrazyAmbulance LinuxArm64 Debug Clean", 339 "group": "build", 340 "command": "Engine/Build/BatchFiles/Linux/Build.sh", 341 "args": [ 342 "CrazyAmbulance", 343 "LinuxArm64", 344 "Debug", 345 "/home/jason/dev/CrazyAmbulance_5.5/CrazyAmbulance.uproject", 346 "-waitmutex", 347 "-clean" 348 ], 349 "problemMatcher": "$msCompile", 350 "type": "shell", 351 "options": { 352 "cwd": "/var/home/jason/dev/UE" 353 } 354 }, 355 { 356 "label": "CrazyAmbulance LinuxArm64 DebugGame Build", 357 "group": "build", 358 "command": "Engine/Build/BatchFiles/Linux/Build.sh", 359 "args": [ 360 "CrazyAmbulance", 361 "LinuxArm64", 362 "DebugGame", 363 "/home/jason/dev/CrazyAmbulance_5.5/CrazyAmbulance.uproject", 364 "-waitmutex" 365 ], 366 "problemMatcher": "$msCompile", 367 "type": "shell", 368 "options": { 369 "cwd": "/var/home/jason/dev/UE" 370 } 371 }, 372 { 373 "label": "CrazyAmbulance LinuxArm64 DebugGame Rebuild", 374 "group": "build", 375 "command": "Engine/Build/BatchFiles/Linux/Build.sh", 376 "args": [ 377 "CrazyAmbulance", 378 "LinuxArm64", 379 "DebugGame", 380 "/home/jason/dev/CrazyAmbulance_5.5/CrazyAmbulance.uproject", 381 "-waitmutex" 382 ], 383 "problemMatcher": "$msCompile", 384 "dependsOn": [ 385 "CrazyAmbulance LinuxArm64 DebugGame Clean" 386 ], 387 "type": "shell", 388 "options": { 389 "cwd": "/var/home/jason/dev/UE" 390 } 391 }, 392 { 393 "label": "CrazyAmbulance LinuxArm64 DebugGame Clean", 394 "group": "build", 395 "command": "Engine/Build/BatchFiles/Linux/Build.sh", 396 "args": [ 397 "CrazyAmbulance", 398 "LinuxArm64", 399 "DebugGame", 400 "/home/jason/dev/CrazyAmbulance_5.5/CrazyAmbulance.uproject", 401 "-waitmutex", 402 "-clean" 403 ], 404 "problemMatcher": "$msCompile", 405 "type": "shell", 406 "options": { 407 "cwd": "/var/home/jason/dev/UE" 408 } 409 }, 410 { 411 "label": "CrazyAmbulance LinuxArm64 Development Build", 412 "group": "build", 413 "command": "Engine/Build/BatchFiles/Linux/Build.sh", 414 "args": [ 415 "CrazyAmbulance", 416 "LinuxArm64", 417 "Development", 418 "/home/jason/dev/CrazyAmbulance_5.5/CrazyAmbulance.uproject", 419 "-waitmutex" 420 ], 421 "problemMatcher": "$msCompile", 422 "type": "shell", 423 "options": { 424 "cwd": "/var/home/jason/dev/UE" 425 } 426 }, 427 { 428 "label": "CrazyAmbulance LinuxArm64 Development Rebuild", 429 "group": "build", 430 "command": "Engine/Build/BatchFiles/Linux/Build.sh", 431 "args": [ 432 "CrazyAmbulance", 433 "LinuxArm64", 434 "Development", 435 "/home/jason/dev/CrazyAmbulance_5.5/CrazyAmbulance.uproject", 436 "-waitmutex" 437 ], 438 "problemMatcher": "$msCompile", 439 "dependsOn": [ 440 "CrazyAmbulance LinuxArm64 Development Clean" 441 ], 442 "type": "shell", 443 "options": { 444 "cwd": "/var/home/jason/dev/UE" 445 } 446 }, 447 { 448 "label": "CrazyAmbulance LinuxArm64 Development Clean", 449 "group": "build", 450 "command": "Engine/Build/BatchFiles/Linux/Build.sh", 451 "args": [ 452 "CrazyAmbulance", 453 "LinuxArm64", 454 "Development", 455 "/home/jason/dev/CrazyAmbulance_5.5/CrazyAmbulance.uproject", 456 "-waitmutex", 457 "-clean" 458 ], 459 "problemMatcher": "$msCompile", 460 "type": "shell", 461 "options": { 462 "cwd": "/var/home/jason/dev/UE" 463 } 464 }, 465 { 466 "label": "CrazyAmbulance LinuxArm64 Test Build", 467 "group": "build", 468 "command": "Engine/Build/BatchFiles/Linux/Build.sh", 469 "args": [ 470 "CrazyAmbulance", 471 "LinuxArm64", 472 "Test", 473 "/home/jason/dev/CrazyAmbulance_5.5/CrazyAmbulance.uproject", 474 "-waitmutex" 475 ], 476 "problemMatcher": "$msCompile", 477 "type": "shell", 478 "options": { 479 "cwd": "/var/home/jason/dev/UE" 480 } 481 }, 482 { 483 "label": "CrazyAmbulance LinuxArm64 Test Rebuild", 484 "group": "build", 485 "command": "Engine/Build/BatchFiles/Linux/Build.sh", 486 "args": [ 487 "CrazyAmbulance", 488 "LinuxArm64", 489 "Test", 490 "/home/jason/dev/CrazyAmbulance_5.5/CrazyAmbulance.uproject", 491 "-waitmutex" 492 ], 493 "problemMatcher": "$msCompile", 494 "dependsOn": [ 495 "CrazyAmbulance LinuxArm64 Test Clean" 496 ], 497 "type": "shell", 498 "options": { 499 "cwd": "/var/home/jason/dev/UE" 500 } 501 }, 502 { 503 "label": "CrazyAmbulance LinuxArm64 Test Clean", 504 "group": "build", 505 "command": "Engine/Build/BatchFiles/Linux/Build.sh", 506 "args": [ 507 "CrazyAmbulance", 508 "LinuxArm64", 509 "Test", 510 "/home/jason/dev/CrazyAmbulance_5.5/CrazyAmbulance.uproject", 511 "-waitmutex", 512 "-clean" 513 ], 514 "problemMatcher": "$msCompile", 515 "type": "shell", 516 "options": { 517 "cwd": "/var/home/jason/dev/UE" 518 } 519 }, 520 { 521 "label": "CrazyAmbulance LinuxArm64 Shipping Build", 522 "group": "build", 523 "command": "Engine/Build/BatchFiles/Linux/Build.sh", 524 "args": [ 525 "CrazyAmbulance", 526 "LinuxArm64", 527 "Shipping", 528 "/home/jason/dev/CrazyAmbulance_5.5/CrazyAmbulance.uproject", 529 "-waitmutex" 530 ], 531 "problemMatcher": "$msCompile", 532 "type": "shell", 533 "options": { 534 "cwd": "/var/home/jason/dev/UE" 535 } 536 }, 537 { 538 "label": "CrazyAmbulance LinuxArm64 Shipping Rebuild", 539 "group": "build", 540 "command": "Engine/Build/BatchFiles/Linux/Build.sh", 541 "args": [ 542 "CrazyAmbulance", 543 "LinuxArm64", 544 "Shipping", 545 "/home/jason/dev/CrazyAmbulance_5.5/CrazyAmbulance.uproject", 546 "-waitmutex" 547 ], 548 "problemMatcher": "$msCompile", 549 "dependsOn": [ 550 "CrazyAmbulance LinuxArm64 Shipping Clean" 551 ], 552 "type": "shell", 553 "options": { 554 "cwd": "/var/home/jason/dev/UE" 555 } 556 }, 557 { 558 "label": "CrazyAmbulance LinuxArm64 Shipping Clean", 559 "group": "build", 560 "command": "Engine/Build/BatchFiles/Linux/Build.sh", 561 "args": [ 562 "CrazyAmbulance", 563 "LinuxArm64", 564 "Shipping", 565 "/home/jason/dev/CrazyAmbulance_5.5/CrazyAmbulance.uproject", 566 "-waitmutex", 567 "-clean" 568 ], 569 "problemMatcher": "$msCompile", 570 "type": "shell", 571 "options": { 572 "cwd": "/var/home/jason/dev/UE" 573 } 574 }, 575 { 576 "label": "CrazyAmbulanceEditor Linux Debug Build", 577 "group": "build", 578 "command": "Engine/Build/BatchFiles/Linux/Build.sh", 579 "args": [ 580 "CrazyAmbulanceEditor", 581 "Linux", 582 "Debug", 583 "/home/jason/dev/CrazyAmbulance_5.5/CrazyAmbulance.uproject", 584 "-waitmutex" 585 ], 586 "problemMatcher": "$msCompile", 587 "type": "shell", 588 "options": { 589 "cwd": "/var/home/jason/dev/UE" 590 } 591 }, 592 { 593 "label": "CrazyAmbulanceEditor Linux Debug Rebuild", 594 "group": "build", 595 "command": "Engine/Build/BatchFiles/Linux/Build.sh", 596 "args": [ 597 "CrazyAmbulanceEditor", 598 "Linux", 599 "Debug", 600 "/home/jason/dev/CrazyAmbulance_5.5/CrazyAmbulance.uproject", 601 "-waitmutex" 602 ], 603 "problemMatcher": "$msCompile", 604 "dependsOn": [ 605 "CrazyAmbulanceEditor Linux Debug Clean" 606 ], 607 "type": "shell", 608 "options": { 609 "cwd": "/var/home/jason/dev/UE" 610 } 611 }, 612 { 613 "label": "CrazyAmbulanceEditor Linux Debug Clean", 614 "group": "build", 615 "command": "Engine/Build/BatchFiles/Linux/Build.sh", 616 "args": [ 617 "CrazyAmbulanceEditor", 618 "Linux", 619 "Debug", 620 "/home/jason/dev/CrazyAmbulance_5.5/CrazyAmbulance.uproject", 621 "-waitmutex", 622 "-clean" 623 ], 624 "problemMatcher": "$msCompile", 625 "type": "shell", 626 "options": { 627 "cwd": "/var/home/jason/dev/UE" 628 } 629 }, 630 { 631 "label": "CrazyAmbulanceEditor Linux DebugGame Build", 632 "group": "build", 633 "command": "Engine/Build/BatchFiles/Linux/Build.sh", 634 "args": [ 635 "CrazyAmbulanceEditor", 636 "Linux", 637 "DebugGame", 638 "/home/jason/dev/CrazyAmbulance_5.5/CrazyAmbulance.uproject", 639 "-waitmutex" 640 ], 641 "problemMatcher": "$msCompile", 642 "type": "shell", 643 "options": { 644 "cwd": "/var/home/jason/dev/UE" 645 } 646 }, 647 { 648 "label": "CrazyAmbulanceEditor Linux DebugGame Rebuild", 649 "group": "build", 650 "command": "Engine/Build/BatchFiles/Linux/Build.sh", 651 "args": [ 652 "CrazyAmbulanceEditor", 653 "Linux", 654 "DebugGame", 655 "/home/jason/dev/CrazyAmbulance_5.5/CrazyAmbulance.uproject", 656 "-waitmutex" 657 ], 658 "problemMatcher": "$msCompile", 659 "dependsOn": [ 660 "CrazyAmbulanceEditor Linux DebugGame Clean" 661 ], 662 "type": "shell", 663 "options": { 664 "cwd": "/var/home/jason/dev/UE" 665 } 666 }, 667 { 668 "label": "CrazyAmbulanceEditor Linux DebugGame Clean", 669 "group": "build", 670 "command": "Engine/Build/BatchFiles/Linux/Build.sh", 671 "args": [ 672 "CrazyAmbulanceEditor", 673 "Linux", 674 "DebugGame", 675 "/home/jason/dev/CrazyAmbulance_5.5/CrazyAmbulance.uproject", 676 "-waitmutex", 677 "-clean" 678 ], 679 "problemMatcher": "$msCompile", 680 "type": "shell", 681 "options": { 682 "cwd": "/var/home/jason/dev/UE" 683 } 684 }, 685 { 686 "label": "CrazyAmbulanceEditor Linux Development Build", 687 "group": "build", 688 "command": "Engine/Build/BatchFiles/Linux/Build.sh", 689 "args": [ 690 "CrazyAmbulanceEditor", 691 "Linux", 692 "Development", 693 "/home/jason/dev/CrazyAmbulance_5.5/CrazyAmbulance.uproject", 694 "-waitmutex" 695 ], 696 "problemMatcher": "$msCompile", 697 "type": "shell", 698 "options": { 699 "cwd": "/var/home/jason/dev/UE" 700 } 701 }, 702 { 703 "label": "CrazyAmbulanceEditor Linux Development Rebuild", 704 "group": "build", 705 "command": "Engine/Build/BatchFiles/Linux/Build.sh", 706 "args": [ 707 "CrazyAmbulanceEditor", 708 "Linux", 709 "Development", 710 "/home/jason/dev/CrazyAmbulance_5.5/CrazyAmbulance.uproject", 711 "-waitmutex" 712 ], 713 "problemMatcher": "$msCompile", 714 "dependsOn": [ 715 "CrazyAmbulanceEditor Linux Development Clean" 716 ], 717 "type": "shell", 718 "options": { 719 "cwd": "/var/home/jason/dev/UE" 720 } 721 }, 722 { 723 "label": "CrazyAmbulanceEditor Linux Development Clean", 724 "group": "build", 725 "command": "Engine/Build/BatchFiles/Linux/Build.sh", 726 "args": [ 727 "CrazyAmbulanceEditor", 728 "Linux", 729 "Development", 730 "/home/jason/dev/CrazyAmbulance_5.5/CrazyAmbulance.uproject", 731 "-waitmutex", 732 "-clean" 733 ], 734 "problemMatcher": "$msCompile", 735 "type": "shell", 736 "options": { 737 "cwd": "/var/home/jason/dev/UE" 738 } 739 } 740 ] 741 }, 742 "launch": { 743 "version": "0.2.0", 744 "configurations": [ 745 { 746 "name": "Launch CrazyAmbulance (Debug)", 747 "request": "launch", 748 "program": "/home/jason/dev/CrazyAmbulance_5.5/Binaries/Linux/CrazyAmbulance-Linux-Debug", 749 "preLaunchTask": "CrazyAmbulance Linux Debug Build", 750 "args": [ 751 ], 752 "cwd": "/var/home/jason/dev/UE", 753 "type": "cppdbg", 754 "visualizerFile": "/var/home/jason/dev/UE/Engine/Extras/VisualStudioDebugging/Unreal.natvis", 755 "showDisplayString": true 756 }, 757 { 758 "name": "Launch CrazyAmbulance (DebugGame)", 759 "request": "launch", 760 "program": "/home/jason/dev/CrazyAmbulance_5.5/Binaries/Linux/CrazyAmbulance-Linux-DebugGame", 761 "preLaunchTask": "CrazyAmbulance Linux DebugGame Build", 762 "args": [ 763 ], 764 "cwd": "/var/home/jason/dev/UE", 765 "type": "cppdbg", 766 "visualizerFile": "/var/home/jason/dev/UE/Engine/Extras/VisualStudioDebugging/Unreal.natvis", 767 "showDisplayString": true 768 }, 769 { 770 "name": "Launch CrazyAmbulance (Development)", 771 "request": "launch", 772 "program": "/home/jason/dev/CrazyAmbulance_5.5/Binaries/Linux/CrazyAmbulance", 773 "preLaunchTask": "CrazyAmbulance Linux Development Build", 774 "args": [ 775 ], 776 "cwd": "/var/home/jason/dev/UE", 777 "type": "cppdbg", 778 "visualizerFile": "/var/home/jason/dev/UE/Engine/Extras/VisualStudioDebugging/Unreal.natvis", 779 "showDisplayString": true 780 }, 781 { 782 "name": "Launch CrazyAmbulance (Test)", 783 "request": "launch", 784 "program": "/home/jason/dev/CrazyAmbulance_5.5/Binaries/Linux/CrazyAmbulance-Linux-Test", 785 "preLaunchTask": "CrazyAmbulance Linux Test Build", 786 "args": [ 787 ], 788 "cwd": "/var/home/jason/dev/UE", 789 "type": "cppdbg", 790 "visualizerFile": "/var/home/jason/dev/UE/Engine/Extras/VisualStudioDebugging/Unreal.natvis", 791 "showDisplayString": true 792 }, 793 { 794 "name": "Launch CrazyAmbulance (Shipping)", 795 "request": "launch", 796 "program": "/home/jason/dev/CrazyAmbulance_5.5/Binaries/Linux/CrazyAmbulance-Linux-Shipping", 797 "preLaunchTask": "CrazyAmbulance Linux Shipping Build", 798 "args": [ 799 ], 800 "cwd": "/var/home/jason/dev/UE", 801 "type": "cppdbg", 802 "visualizerFile": "/var/home/jason/dev/UE/Engine/Extras/VisualStudioDebugging/Unreal.natvis", 803 "showDisplayString": true 804 }, 805 { 806 "name": "Launch CrazyAmbulanceEditor (Debug)", 807 "request": "launch", 808 "program": "/var/home/jason/dev/UE/Engine/Binaries/Linux/UnrealEditor-Linux-Debug", 809 "preLaunchTask": "CrazyAmbulanceEditor Linux Debug Build", 810 "args": [ 811 "/home/jason/dev/CrazyAmbulance_5.5/CrazyAmbulance.uproject" 812 ], 813 "cwd": "/var/home/jason/dev/UE", 814 "type": "cppdbg", 815 "visualizerFile": "/var/home/jason/dev/UE/Engine/Extras/VisualStudioDebugging/Unreal.natvis", 816 "showDisplayString": true 817 }, 818 { 819 "name": "Launch CrazyAmbulanceEditor (DebugGame)", 820 "request": "launch", 821 "program": "/var/home/jason/dev/UE/Engine/Binaries/Linux/UnrealEditor-Linux-DebugGame", 822 "preLaunchTask": "CrazyAmbulanceEditor Linux DebugGame Build", 823 "args": [ 824 "/home/jason/dev/CrazyAmbulance_5.5/CrazyAmbulance.uproject" 825 ], 826 "cwd": "/var/home/jason/dev/UE", 827 "type": "cppdbg", 828 "visualizerFile": "/var/home/jason/dev/UE/Engine/Extras/VisualStudioDebugging/Unreal.natvis", 829 "showDisplayString": true 830 }, 831 { 832 "name": "Launch CrazyAmbulanceEditor (Development)", 833 "request": "launch", 834 "program": "/var/home/jason/dev/UE/Engine/Binaries/Linux/UnrealEditor", 835 "preLaunchTask": "CrazyAmbulanceEditor Linux Development Build", 836 "args": [ 837 "/home/jason/dev/CrazyAmbulance_5.5/CrazyAmbulance.uproject" 838 ], 839 "cwd": "/var/home/jason/dev/UE", 840 "type": "cppdbg", 841 "visualizerFile": "/var/home/jason/dev/UE/Engine/Extras/VisualStudioDebugging/Unreal.natvis", 842 "showDisplayString": true 843 }, 844 { 845 "name": "Generate Project Files", 846 "type": "coreclr", 847 "request": "launch", 848 "preLaunchTask": "UnrealBuildTool Linux Development Build", 849 "program": "/var/home/jason/dev/UE/Engine/Build/BatchFiles/RunUBT.bat", 850 "args": [ 851 "-projectfiles", 852 "-vscode", 853 "-project=/home/jason/dev/CrazyAmbulance_5.5/CrazyAmbulance.uproject", 854 "-game", 855 "-engine", 856 "-dotnet" 857 ], 858 "console": "internalConsole", 859 "internalConsoleOptions": "openOnSessionStart", 860 "stopAtEntry": false, 861 "cwd": "/var/home/jason/dev/UE" 862 } 863 ] 864 } 865}