Created
September 18, 2023 15:37
-
-
Save micahlt/87cc2be2278b7a106bc4bd900ba3f37f to your computer and use it in GitHub Desktop.
VSCode JavaFX config
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| // 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