Files
Shirt-Cannon/.vscode/settings.json
T

30 lines
810 B
JSON
Raw Normal View History

2022-04-25 16:47:06 -06:00
{
"java.configuration.updateBuildConfiguration": "automatic",
2022-04-26 14:55:02 -06:00
"java.server.launchMode": "Standard",
2022-04-25 16:47:06 -06:00
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"bin/": true,
"**/.classpath": true,
"**/.project": true,
"**/.settings": true,
2022-04-26 14:55:02 -06:00
"**/.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"
2022-04-25 16:47:06 -06:00
}