diff options
author | sowgro <tpoke.ferrari@gmail.com> | 2023-05-11 00:01:06 -0400 |
---|---|---|
committer | sowgro <tpoke.ferrari@gmail.com> | 2023-05-11 00:01:06 -0400 |
commit | d5a0299e01c830ba9411dba8bf2a223569d54d3f (patch) | |
tree | c56f7507483c59d1a2605af3f2db689fa0ac7f47 | |
parent | fae5cc1d77590caff6f9c1f2abfbe0a90e3d2173 (diff) | |
download | NPEhero-d5a0299e01c830ba9411dba8bf2a223569d54d3f.tar.gz NPEhero-d5a0299e01c830ba9411dba8bf2a223569d54d3f.tar.bz2 NPEhero-d5a0299e01c830ba9411dba8bf2a223569d54d3f.zip |
Fix vscode configs to reflect the new file structire
-rw-r--r-- | .vscode/launch.json | 4 | ||||
-rw-r--r-- | .vscode/settings.json | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json index 30c9be8..d47897b 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -10,7 +10,7 @@ "request": "launch", "mainClass": "gui.Driver", "projectName": "GuitarHero", - "vmArgs": "--module-path lib --add-modules javafx.controls,javafx.fxml" + "vmArgs": "--module-path lib/linux --add-modules javafx.controls,javafx.fxml" }, { "type": "java", @@ -31,7 +31,7 @@ "name": "Launch App", "request": "launch", "mainClass": "main.jfxTest", - "vmArgs": "--module-path lib --add-modules javafx.controls,javafx.fxml" + "vmArgs": "--module-path lib/linux --add-modules javafx.controls,javafx.fxml" } ] }
\ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json index 078509d..d84211f 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -2,7 +2,7 @@ "java.project.sourcePaths": ["src"], "java.project.outputPath": "bin", "java.project.referencedLibraries": [ - "lib/**/*.jar" + "lib/linux/**/*.jar" ], "java.debug.settings.onBuildFailureProceed": true }
\ No newline at end of file |