Lines Matching refs:dstPath
56 def cleanDstDir (dstPath):
57 binFiles = [f for f in os.listdir(dstPath) if os.path.isfile(os.path.join(dstPath, f)) and fnmatch.fnmatch(f, "*.spv")]
60 print("Removing %s" % os.path.join(dstPath, binFile))
61 os.remove(os.path.join(dstPath, binFile))
63 def execBuildPrograms (buildCfg, generator, module, dstPath, vulkanVersion):
64 fullDstPath = os.path.realpath(dstPath)
95 dest="dstPath",
115 if not os.path.exists(args.dstPath):
116 os.makedirs(args.dstPath)
118 execBuildPrograms(buildCfg, generator, module, args.dstPath, args.vulkanVersion)