Skip to content

Commit

Permalink
add StartMining to .vscode launch.json
Browse files Browse the repository at this point in the history
  • Loading branch information
woodser committed Sep 16, 2024
1 parent b30a2cf commit 1d14120
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,19 @@
{
"configurations": [
{
"type": "java",
"name": "StartMining",
"request": "launch",
"mainClass": "utils.StartMining",
"projectName": "monero-java"
},
{
"type": "java",
"name": "Launch Current File",
"request": "launch",
"mainClass": "${file}",
"projectName": "monero-java",
"vmArgs": "-Djava.library.path=./build",
"vmArgs": "-Djava.library.path=./build"
}
]
}

0 comments on commit 1d14120

Please sign in to comment.