-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.json
17 lines (17 loc) · 915 Bytes
/
settings.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
// needed to make ghidra stubs work in this project (auto complete for vscode)
"python.defaultInterpreterPath": "${workspaceFolder}.env/bin/python",
"python.analysis.stubPath": "${workspaceFolder}/.env/lib/python3.10/site-packages/ghidra-stubs/",
"python.autoComplete.extraPaths": [
"${workspaceFolder}/.env/lib/python3.10/site-packages/ghidra-stubs/"
],
"python.analysis.extraPaths": [
"${workspaceFolder}/.env/lib/python3.10/site-packages/ghidra-stubs/"
],
// env vars
"GHIDRA_INSTALL_DIR": "${env:GHIDRA_INSTALL_DIR}",
"GHIDRA_PROJECTS_PATH": "${workspaceFolder}${pathSeparator}.ghidra_projects",
"GHIDRA_HEADLESS": "${env:GHIDRA_INSTALL_DIR}${pathSeparator}support${pathSeparator}analyzeHeadless",
"PROJECT_NAME": "sample_project",
"GHIDRA_BRIDGE_INSTALL_DIR": "${workspaceFolder}${pathSeparator}.ghidra_bridge"
}