Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jun 21st, 2012  |  syntax: None  |  size: 0.56 KB  |  hits: 11  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. void
  2. MakefileGenerator::initCompiler(const MakefileGenerator::Compiler &comp)
  3. {
  4.     QMap<QString, QStringList> &v = project->variables();
  5.     QStringList &l = v[comp.variable_in];
  6.     // find all the relevant file inputs
  7.     if(!init_compiler_already.contains(comp.variable_in)) {
  8.         init_compiler_already.insert(comp.variable_in, true);
  9.         if(!noIO())
  10.             l = findFilesInVPATH(l, (comp.flags & Compiler::CompilerRemoveNoExist) ?
  11.                                  VPATH_RemoveMissingFiles : VPATH_WarnMissingFiles, "VPATH_" + comp.variable_in);
  12.     }
  13. }