def scan(self):
		(nodes,names)=ccroot.scan(self)
		for x in nodes:
			if x.name.endswith('.moc'):
				nodes.remove(x)
				names.append(x.relpath_gen(self.inputs[0].parent))
		return(nodes,names)
Beispiel #2
0
 def scan(self):
     (nodes, names) = ccroot.scan(self)
     for x in nodes:
         if x.name.endswith('.moc'):
             nodes.remove(x)
             names.append(x.relpath_gen(self.inputs[0].parent))
     return (nodes, names)
Beispiel #3
0
	def scan(self):
		(nodes, names) = ccroot.scan(self)
		# for some reasons (variants) the moc node may end in the list of node deps
		for x in nodes:
			if x.name.endswith('.moc'):
				nodes.remove(x)
				names.append(x.relpath_gen(self.inputs[0].parent))
		return (nodes, names)
Beispiel #4
0
 def scan(self):
     (nodes, names) = ccroot.scan(self)
     # for some reasons (variants) the moc node may end in the list of node deps
     for x in nodes:
         if x.name.endswith('.moc'):
             nodes.remove(x)
             names.append(x.relpath_gen(self.inputs[0].parent))
     return (nodes, names)