Files
Robot-Essentials/.vscode/settings.json
T

30 lines
810 B
JSON
Raw Normal View History

2019-07-07 14:04:30 -06:00
{
"java.configuration.updateBuildConfiguration": "automatic",
2024-01-05 13:56:01 -07:00
"java.server.launchMode": "Standard",
2019-07-07 14:04:30 -06:00
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"bin/": true,
2020-01-05 11:01:43 -07:00
"**/.classpath": true,
"**/.project": true,
"**/.settings": true,
2024-01-05 13:56:01 -07: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"
2019-07-07 14:04:30 -06:00
}