Skip to content

Instantly share code, notes, and snippets.

@micahlt
Created September 18, 2023 15:37
Show Gist options
  • Select an option

  • Save micahlt/87cc2be2278b7a106bc4bd900ba3f37f to your computer and use it in GitHub Desktop.

Select an option

Save micahlt/87cc2be2278b7a106bc4bd900ba3f37f to your computer and use it in GitHub Desktop.
VSCode JavaFX config
{
// This is a VSCode launch config for Java with unmodularized JavaFX
"version": "0.2.0",
"configurations": [
{
"type": "java",
"name": "Launch with JavaFX",
"mainClass": "HelloFx",
"request": "launch",
"vmArgs": "--module-path C:\\JavaFX\\lib --add-modules javafx.controls"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment