22 lines
895 B
JSON
22 lines
895 B
JSON
|
|
{
|
||
|
|
// 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": "Windows Current File",
|
||
|
|
"request": "launch",
|
||
|
|
"mainClass": "${file}",
|
||
|
|
"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}",
|
||
|
|
"vmArgs": " --module-path '/home/sherwinp/workspace/javafx-sdk/lib/' --add-modules ALL-MODULE-PATH --enable-native-access=javafx.graphics"
|
||
|
|
}
|
||
|
|
]
|
||
|
|
}
|