| | 17 | |
|---|
| | 18 | } |
|---|
| | 19 | |
|---|
| | 20 | void show_help() { |
|---|
| | 21 | |
|---|
| | 22 | cout << "Wirk3 - Windows Release Kit for Greenstone3" << endl; |
|---|
| | 23 | cout << "Helps you to create releases from the Repository" << endl << endl; |
|---|
| | 24 | |
|---|
| | 25 | cout << "usage: wirk3 [args]" << endl; |
|---|
| | 26 | cout << " -sim" << endl; |
|---|
| | 27 | cout << " simulation only, don't actually do anything" << endl << endl; |
|---|
| | 28 | |
|---|
| | 29 | cout << " -help" << endl; |
|---|
| | 30 | cout << " show this help screen" << endl << endl; |
|---|
| | 31 | |
|---|
| | 32 | cout << " -from <target>" << endl; |
|---|
| | 33 | cout << " start execution from the target with the given target address" << endl << endl; |
|---|
| | 34 | |
|---|
| | 35 | cout << " -to <target>" << endl; |
|---|
| | 36 | cout << " stop execution just before the target with the given target address" << endl << endl; |
|---|
| | 37 | |
|---|
| | 38 | cout << " -descend <target>" << endl; |
|---|
| | 39 | cout << " execute only the target with the given address, including subtargets" << endl << endl; |
|---|
| | 40 | |
|---|
| | 41 | cout << " -cp" << endl; |
|---|
| | 42 | cout << " show the classpath being used by wirk2" << endl << endl; |
|---|