コード例 #1
0
ファイル: CPack.py プロジェクト: KDAB/Make-O-Matic
	def __init__( self, sourcePackage, licenseFile, config, directory, sourceGenerators, binaryGenerators, extraCPackLogic ):
		Action.__init__( self )
		self._sourcePackage = sourcePackage
		self._licenseFile = licenseFile
		self._directory = directory
		self._config = config
		self._sourceGenerators = sourceGenerators
		self._binaryGenerators = binaryGenerators
		self._extraCPackLogic = extraCPackLogic
コード例 #2
0
ファイル: FilesMoveAction.py プロジェクト: KDAB/Make-O-Matic
	def __init__( self, files = None, destination = None ):
		Action.__init__( self )
		self.setFiles( files )
		self.setDestination( destination )
コード例 #3
0
ファイル: Preprocessor.py プロジェクト: KDAB/Make-O-Matic
	def __init__( self, preprocessor, name = None ):
		Action.__init__( self, name )
		self.setPreprocessor( preprocessor )
		# set up a regular expression that searches for the place holders:
		self.__regex = re.compile( r'{(@@\(.*\))}*' )
コード例 #4
0
	def __init__( self, command = None, timeout = None, combineOutput = True, searchPaths = None ):
		Action.__init__( self )
		self.setCommand( command, timeout, searchPaths )
		self.__combineOutput = combineOutput
		self.__runner = None
コード例 #5
0
ファイル: CopyActionBase.py プロジェクト: KDAB/Make-O-Matic
	def __init__( self, sourceLocation = None, targetLocation = None, name = None ):
		Action.__init__( self, name )

		self.setSourcePath( sourceLocation )
		self.setDestinationPath( targetLocation )
コード例 #6
0
	def __init__( self, pyLintChecker ):
		Action.__init__( self )
		self.__pyLintChecker = pyLintChecker
		self.setIgnorePreviousFailure( True )
コード例 #7
0
ファイル: DirActionBase.py プロジェクト: KDAB/Make-O-Matic
	def __init__( self, path, name = None ):
		Action.__init__( self, name )
		self.setPath( path )
コード例 #8
0
ファイル: TouchAction.py プロジェクト: KDAB/Make-O-Matic
	def __init__( self, file ):
		Action.__init__( self )
		self._file = file