Mercurial > cgi-bin > hgwebdir.cgi > VMS > 2__runs_and_data
comparison scripts/SetBaseDirs.pm @ 24:6d03033aca59
added config file for HWSim ping-pong test program
| author | Sean <seanhalle@yahoo.com> |
|---|---|
| date | Thu, 17 May 2012 20:41:06 +0200 |
| parents | |
| children |
comparison
equal
deleted
inserted
replaced
| -1:000000000000 | 0:66007a053c25 |
|---|---|
| 1 #!/usr/bin/perl | |
| 2 | |
| 3 #Set the base directories -- this should be used by all other scripts in | |
| 4 # this directory | |
| 5 | |
| 6 package SetBaseDirs; | |
| 7 require(Exporter); | |
| 8 @ISA = qw(Exporter); | |
| 9 @EXPORT = qw($baseDir $scriptsDir $executablesDir $resultsBaseDir $codeBaseDir); | |
| 10 | |
| 11 BEGIN | |
| 12 { | |
| 13 $baseDir ="C:/D/2__Work/1__Development/2__runs_and_data"; | |
| 14 $scriptsDir = "$baseDir/scripts"; | |
| 15 $executablesDir = "$baseDir/executables"; | |
| 16 $resultsBaseDir = "$baseDir/results_from_runs"; | |
| 17 $codeBaseDir = "$baseDir/../0__Code/"; | |
| 18 }; |
