|
303 | 303 | }, |
304 | 304 | "problemMatcher": [] |
305 | 305 | }, |
| 306 | + { |
| 307 | + "label": "Pixi - Rebuild MF6 (gfortran, release)", |
| 308 | + "command": "${workspaceFolder}/.vscode/run_python.sh", |
| 309 | + "windows": { |
| 310 | + "command": "${workspaceFolder}/.vscode/run_python.cmd", |
| 311 | + "args": [ |
| 312 | + "${workspaceFolder}/.vscode/build_vscode.py", |
| 313 | + "--compiler", |
| 314 | + "gfortran", |
| 315 | + "--buildtype", |
| 316 | + "release", |
| 317 | + "--pixi", |
| 318 | + "rebuild", |
| 319 | + ], |
| 320 | + }, |
| 321 | + "args": [ |
| 322 | + "${workspaceFolder}/.vscode/build_vscode.py", |
| 323 | + "--compiler", |
| 324 | + "gfortran", |
| 325 | + "--buildtype", |
| 326 | + "release", |
| 327 | + "--pixi", |
| 328 | + "rebuild", |
| 329 | + ], |
| 330 | + "group": { |
| 331 | + "kind": "build", |
| 332 | + "isDefault": true |
| 333 | + }, |
| 334 | + "presentation": { |
| 335 | + "clear": true |
| 336 | + } |
| 337 | + }, |
| 338 | + { |
| 339 | + "label": "Pixi - Build MF6 (gfortran, release)", |
| 340 | + "command": "${workspaceFolder}/.vscode/run_python.sh", |
| 341 | + "windows": { |
| 342 | + "command": "${workspaceFolder}/.vscode/run_python.cmd", |
| 343 | + "args": [ |
| 344 | + "${workspaceFolder}/.vscode/build_vscode.py", |
| 345 | + "--compiler", |
| 346 | + "gfortran", |
| 347 | + "--buildtype", |
| 348 | + "release", |
| 349 | + "--pixi", |
| 350 | + "build", |
| 351 | + ], |
| 352 | + "problemMatcher": "$msCompile" |
| 353 | + }, |
| 354 | + "args": [ |
| 355 | + "${workspaceFolder}/.vscode/build_vscode.py", |
| 356 | + "--compiler", |
| 357 | + "gfortran", |
| 358 | + "--buildtype", |
| 359 | + "release", |
| 360 | + "--pixi", |
| 361 | + "build", |
| 362 | + ], |
| 363 | + "group": { |
| 364 | + "kind": "build", |
| 365 | + "isDefault": true |
| 366 | + }, |
| 367 | + "presentation": { |
| 368 | + "clear": true |
| 369 | + } |
| 370 | + }, |
| 371 | + { |
| 372 | + "label": "Pixi - Build MF6 (gfortran, debug)", |
| 373 | + "command": "${workspaceFolder}/.vscode/run_python.sh", |
| 374 | + "windows": { |
| 375 | + "command": "${workspaceFolder}/.vscode/run_python.cmd", |
| 376 | + "args": [ |
| 377 | + "${workspaceFolder}/.vscode/build_vscode.py", |
| 378 | + "--compiler", |
| 379 | + "gfortran", |
| 380 | + "--buildtype", |
| 381 | + "debug", |
| 382 | + "--pixi", |
| 383 | + "build", |
| 384 | + ], |
| 385 | + "problemMatcher": "$msCompile" |
| 386 | + }, |
| 387 | + "args": [ |
| 388 | + "${workspaceFolder}/.vscode/build_vscode.py", |
| 389 | + "--compiler", |
| 390 | + "gfortran", |
| 391 | + "--buildtype", |
| 392 | + "debug", |
| 393 | + "--pixi", |
| 394 | + "build", |
| 395 | + ], |
| 396 | + "group": { |
| 397 | + "kind": "build", |
| 398 | + "isDefault": true |
| 399 | + }, |
| 400 | + "presentation": { |
| 401 | + "clear": true |
| 402 | + } |
| 403 | + }, |
| 404 | + { |
| 405 | + "label": "Pixi - Rebuild MF6 (gfortran, debug)", |
| 406 | + "command": "${workspaceFolder}/.vscode/run_python.sh", |
| 407 | + "windows": { |
| 408 | + "command": "${workspaceFolder}/.vscode/run_python.cmd", |
| 409 | + "args": [ |
| 410 | + "${workspaceFolder}/.vscode/build_vscode.py", |
| 411 | + "--compiler", |
| 412 | + "gfortran", |
| 413 | + "--buildtype", |
| 414 | + "debug", |
| 415 | + "--pixi", |
| 416 | + "rebuild", |
| 417 | + ], |
| 418 | + }, |
| 419 | + "args": [ |
| 420 | + "${workspaceFolder}/.vscode/build_vscode.py", |
| 421 | + "--compiler", |
| 422 | + "gfortran", |
| 423 | + "--buildtype", |
| 424 | + "debug", |
| 425 | + "--pixi", |
| 426 | + "rebuild", |
| 427 | + ], |
| 428 | + "group": { |
| 429 | + "kind": "build", |
| 430 | + "isDefault": true |
| 431 | + }, |
| 432 | + "presentation": { |
| 433 | + "clear": true |
| 434 | + } |
| 435 | + }, |
| 436 | + { |
| 437 | + "label": "Pixi - Build MF6 (ifort, release)", |
| 438 | + "command": "${workspaceFolder}/.vscode/run_python.sh", |
| 439 | + "windows": { |
| 440 | + "command": "${workspaceFolder}/.vscode/run_python.cmd", |
| 441 | + "args": [ |
| 442 | + "${workspaceFolder}/.vscode/build_vscode.py", |
| 443 | + "--compiler", |
| 444 | + "ifort", |
| 445 | + "--buildtype", |
| 446 | + "release", |
| 447 | + "--pixi", |
| 448 | + "build", |
| 449 | + ], |
| 450 | + "problemMatcher": "$msCompile" |
| 451 | + }, |
| 452 | + "args": [ |
| 453 | + "${workspaceFolder}/.vscode/build_vscode.py", |
| 454 | + "--compiler", |
| 455 | + "ifort", |
| 456 | + "--buildtype", |
| 457 | + "release", |
| 458 | + "--pixi", |
| 459 | + "build", |
| 460 | + ], |
| 461 | + "group": { |
| 462 | + "kind": "build", |
| 463 | + "isDefault": true |
| 464 | + }, |
| 465 | + "presentation": { |
| 466 | + "clear": true |
| 467 | + } |
| 468 | + }, |
| 469 | + { |
| 470 | + "label": "Pixi - Rebuild MF6 (ifort, release)", |
| 471 | + "command": "${workspaceFolder}/.vscode/run_python.sh", |
| 472 | + "windows": { |
| 473 | + "command": "${workspaceFolder}/.vscode/run_python.cmd", |
| 474 | + "args": [ |
| 475 | + "${workspaceFolder}/.vscode/build_vscode.py", |
| 476 | + "--compiler", |
| 477 | + "ifort", |
| 478 | + "--buildtype", |
| 479 | + "release", |
| 480 | + "--pixi", |
| 481 | + "rebuild", |
| 482 | + ], |
| 483 | + }, |
| 484 | + "args": [ |
| 485 | + "${workspaceFolder}/.vscode/build_vscode.py", |
| 486 | + "--compiler", |
| 487 | + "ifort", |
| 488 | + "--buildtype", |
| 489 | + "release", |
| 490 | + "--pixi" |
| 491 | + "rebuild", |
| 492 | + ], |
| 493 | + "group": { |
| 494 | + "kind": "build", |
| 495 | + "isDefault": true |
| 496 | + }, |
| 497 | + "presentation": { |
| 498 | + "clear": true |
| 499 | + } |
| 500 | + }, |
| 501 | + { |
| 502 | + "label": "Pixi - Build MF6 (ifort, debug)", |
| 503 | + "command": "${workspaceFolder}/.vscode/run_python.sh", |
| 504 | + "windows": { |
| 505 | + "command": "${workspaceFolder}/.vscode/run_python.cmd", |
| 506 | + "args": [ |
| 507 | + "${workspaceFolder}/.vscode/build_vscode.py", |
| 508 | + "--compiler", |
| 509 | + "ifort", |
| 510 | + "--buildtype", |
| 511 | + "debug", |
| 512 | + "--pixi", |
| 513 | + "build", |
| 514 | + ], |
| 515 | + "problemMatcher": "$msCompile" |
| 516 | + }, |
| 517 | + "args": [ |
| 518 | + "${workspaceFolder}/.vscode/build_vscode.py", |
| 519 | + "--compiler", |
| 520 | + "ifort", |
| 521 | + "--buildtype", |
| 522 | + "debug", |
| 523 | + "--pixi", |
| 524 | + "build", |
| 525 | + ], |
| 526 | + "group": { |
| 527 | + "kind": "build", |
| 528 | + "isDefault": true |
| 529 | + }, |
| 530 | + "presentation": { |
| 531 | + "clear": true |
| 532 | + } |
| 533 | + }, |
| 534 | + { |
| 535 | + "label": "Pixi - Rebuild MF6 (ifort, debug)", |
| 536 | + "command": "${workspaceFolder}/.vscode/run_python.sh", |
| 537 | + "windows": { |
| 538 | + "command": "${workspaceFolder}/.vscode/run_python.cmd", |
| 539 | + "args": [ |
| 540 | + "${workspaceFolder}/.vscode/build_vscode.py", |
| 541 | + "--compiler", |
| 542 | + "ifort", |
| 543 | + "--buildtype", |
| 544 | + "debug", |
| 545 | + "--pixi", |
| 546 | + "rebuild", |
| 547 | + ], |
| 548 | + }, |
| 549 | + "args": [ |
| 550 | + "${workspaceFolder}/.vscode/build_vscode.py", |
| 551 | + "--compiler", |
| 552 | + "ifort", |
| 553 | + "--buildtype", |
| 554 | + "debug", |
| 555 | + "--pixi", |
| 556 | + "rebuild", |
| 557 | + ], |
| 558 | + "group": { |
| 559 | + "kind": "build", |
| 560 | + "isDefault": true |
| 561 | + }, |
| 562 | + "presentation": { |
| 563 | + "clear": true |
| 564 | + } |
| 565 | + }, |
306 | 566 | ] |
307 | 567 | } |
0 commit comments