summaryrefslogtreecommitdiff
path: root/.vscode/settings.json
diff options
context:
space:
mode:
authorkartofen <mladenovnasko0@gmail.com>2024-01-18 00:35:25 +0200
committerkartofen <mladenovnasko0@gmail.com>2024-01-18 00:35:25 +0200
commitde82bb11825e8bc5087f10605b3fe2fd926f1909 (patch)
tree73723345f7c5ebfe8a64d4fe904fa85ea57538e1 /.vscode/settings.json
init
Diffstat (limited to '.vscode/settings.json')
-rw-r--r--.vscode/settings.json29
1 files changed, 29 insertions, 0 deletions
diff --git a/.vscode/settings.json b/.vscode/settings.json
new file mode 100644
index 0000000..8be11f2
--- /dev/null
+++ b/.vscode/settings.json
@@ -0,0 +1,29 @@
+{
+ "java.configuration.updateBuildConfiguration": "automatic",
+ "java.server.launchMode": "Standard",
+ "files.exclude": {
+ "**/.git": true,
+ "**/.svn": true,
+ "**/.hg": true,
+ "**/CVS": true,
+ "**/.DS_Store": true,
+ "bin/": true,
+ "**/.classpath": true,
+ "**/.project": true,
+ "**/.settings": true,
+ "**/.factorypath": true,
+ "**/*~": true
+ },
+ "java.test.config": [
+ {
+ "name": "WPIlibUnitTests",
+ "workingDirectory": "${workspaceFolder}/build/jni/release",
+ "vmargs": [ "-Djava.library.path=${workspaceFolder}/build/jni/release" ],
+ "env": {
+ "LD_LIBRARY_PATH": "${workspaceFolder}/build/jni/release" ,
+ "DYLD_LIBRARY_PATH": "${workspaceFolder}/build/jni/release"
+ }
+ },
+ ],
+ "java.test.defaultConfig": "WPIlibUnitTests"
+}