| 1 | =comments
|
|---|
| 2 |
|
|---|
| 3 | helper script to make life for PerlCE easier.
|
|---|
| 4 |
|
|---|
| 5 | There are different modes for running this script:
|
|---|
| 6 | perl comp.pl --run [any-command-line-arguments]
|
|---|
| 7 | and
|
|---|
| 8 | perl comp.pl --do [any-command-line-arguments]
|
|---|
| 9 | and
|
|---|
| 10 | perl comp.pl --copy pc:[pc-location] ce:[ce-location]
|
|---|
| 11 |
|
|---|
| 12 | --run executes this build of perl on CE device with arguments provided
|
|---|
| 13 | --run=test will display a predefined messagebox that say everything is ok.
|
|---|
| 14 |
|
|---|
| 15 | --do Executes on local computer command that is presented by arguments
|
|---|
| 16 | immediately following after --do
|
|---|
| 17 | Most reason why you may want to execute script in this mode is that
|
|---|
| 18 | arguments preprocessed to replace [p] occurrences into current perl
|
|---|
| 19 | location. Typically it is handy to run
|
|---|
| 20 | perl comp.pl --do cecopy pc:..\lib\Exporter.pm ce:[p]\lib
|
|---|
|
|---|