Help for this page

Select Code to Download


  1. or download this
    sub getBinDir
    {
    ...
         print "Returning binDir.\n";
         return $self->{'binDir'};
    }
    
  2. or download this
    sub copyCtestBinaries
    {
    ...
        print "AppDir = $appBin.\n";
        `cp $binDir $appBin`;
    }
    
  3. or download this
    sub new
    {
    ...
        bless ($self, $class);
        return $self;
    }