launch.json wieder hinzugefügt

master
Maximilian Strobel 2024-06-13 13:46:39 +02:00
parent 9ef6e9f22e
commit bdd910d93d
2 changed files with 22 additions and 14 deletions

14
.gitignore vendored
View File

@ -1,14 +0,0 @@
# Ignoriere alle .log-Dateien
*.log
# Ignoriere das Verzeichnis build/
build/
# Ignoriere die Datei .env
.env
# Ignoriere alle .DS_Store-Dateien (auf macOS)
.DS_Store
# Ignoriere die launch.json Datei
.vscode/launch.json

22
.vscode/launch.json vendored 100644
View File

@ -0,0 +1,22 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "java",
"name": "Main",
"request": "launch",
"vmArgs": "--module-path C:/Sources/javafx-sdk-22.0.1/lib --add-modules javafx.controls,javafx.fxml",
"mainClass": "program.Main",
"projectName": "Pegasus_2f3bec48"
},
{
"type": "java",
"name": "Current File",
"request": "launch",
"mainClass": "${file}"
}
]
}