Lines Matching refs:dstFile
99 def __init__ (self, dstFile): argument
100 self.dstFile = dstFile
103 dirName = os.path.dirname(self.dstFile)
111 def __init__ (self, srcFile, dstFile): argument
112 super(CopyFile, self).__init__(dstFile)
117 if os.path.exists(self.dstFile):
118 die("%s already exists" % self.dstFile)
119 shutil.copyfile(self.srcFile, self.dstFile)
122 def __init__ (self, dstFile): argument
123 super(GenReleaseInfoFileTarget, self).__init__(dstFile)
135 "--out=%s" % self.dstFile
139 def __init__ (self, srcFile, dstFile, replaceVars): argument
140 super(GenCMake, self).__init__(dstFile)
146 print(" GenCMake: %s" % removeLeadingPath(self.dstFile, packageBuildInfo.dstBasePath))
151 writeFile(self.dstFile, src)
192 def __init__ (self, srcFile, dstFile, makeTarget): argument
194 self.dstFile = dstFile
199 fullDstPath = os.path.normpath(os.path.join(packageBuildInfo.dstBasePath, self.dstFile))
223 def __init__ (self, dstFile): argument
224 self.dstFile = dstFile
244 dstFile = os.path.normpath(os.path.join(packageBuildInfo.dstBasePath, self.dstFile))
246 CopyFile(srcFile, dstFile).make(packageBuildInfo)
319 def makeFileCopy (srcFile, dstFile): argument
320 return SingleFileTarget(srcFile, dstFile, lambda s, d: CopyFile(s, d))