Lines Matching refs:mocFile

712         foreach my $mocFile (keys (%globalmocs))
714 my ($dir, $hFile, $cppFile) = split ("\035", $globalmocs{$mocFile}, 3);
716 $mocs .= " $mocFile.moc" if exists $shash{$cppFile};
718 $sourcelist{$cxxsuffix} .= "$mocFile.moc.$cxxsuffix ";
1842 foreach my $mocFile (keys (%mocFiles))
1844 @cppFiles = keys %{$moc2cpp->{"$mocFile.moc"}};
1846 $mocFiles{$mocFile} .= "\035" . $cppFiles[0];
1847 push(@deped, $mocFile);
1849 push (@newObs, $mocFile); # Produce new object file
1853 "Warning: No c++ file that includes $mocFile.moc\n";
1856 # guess we could use the mocFile.cpp file if it's in the list???
1858 "Error: Multiple c++ files that include $mocFile.moc\n";
1861 delete $mocFiles{$mocFile};
1878 foreach $mocFile (keys (%mocFiles))
1881 ($dir, $hFile, $cppFile) = split ("\035", $mocFiles{$mocFile}, 3);
1886 $target_adds{"$cppFile.o"} .= "$mocFile.moc ";
1887 $target_adds{"$cppFile.lo"} .= "$mocFile.moc ";
1888 appendLines ("$mocFile.moc: $dir/$hFile\n\t\$(MOC) $dir/$hFile -o $mocFile.moc\n");
1889 $cleanMoc .= " $mocFile.moc";
1890 appendLines ("mocs: $mocFile.moc");
1894 appendLines ("$mocFile$mocExt: $dir/$hFile\n\t\$(MOC) $dir/$hFile -o $mocFile$mocExt\n");
1895 $cleanMoc .= " $mocFile$mocExt";
1896 appendLines ("mocs: $mocFile$mocExt");
1920 foreach my $mocFile (keys (%globalmocs))
1922 my ($dir, $hFile, $cppFile) = split ("\035", $globalmocs{$mocFile}, 3);
1925 $mocs .= " $mocFile.moc" if exists $shash{$cppFile};
1937 $mocs .= " $mocFile.moc.$cxxsuffix"
1938 if exists $mhash{$mocFile.".moc.$cxxsuffix"};