update project.

This commit is contained in:
2026-02-18 15:05:18 -05:00
parent c86bc67c5e
commit de52126ab1
19 changed files with 274 additions and 58 deletions
+9 -2
View File
@@ -4,18 +4,25 @@
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "java",
"name": "View",
"request": "launch",
"mainClass": "edu.bookocontacts.AppSceneView",
"projectName": "bookocontacts"
},
{
"type": "java",
"name": "Windows Current File",
"request": "launch",
"mainClass": "${file}",
"mainClass": "edu.bookocontacts.AppSceneView",
"vmArgs": " --module-path 'C://Program Files//javafx-25//lib' --add-modules ALL-MODULE-PATH --enable-native-access=javafx.graphics"
},
{
"type": "java",
"name": "Linux Current File",
"request": "launch",
"mainClass": "${file}",
"mainClass": "edu.bookocontacts.AppSceneView",
"vmArgs": " --module-path '/home/sherwinp/workspace/javafx-sdk/lib/' --add-modules ALL-MODULE-PATH --enable-native-access=javafx.graphics"
}
]