5 from buildcmd import BuildCmd
6 from datetime import datetime
9 class RteCmd(BuildCmd):
11 def __init__(self, project, config, subcmd = "build"):
12 BuildCmd.__init__(self)
13 self._project = project
20 def getArguments(self):
21 return [ os.path.normpath(shutil.which("rtebuild.py")), "-c", os.path.abspath(self._project), "-t", self._config, self._subcmd ]
27 return self._result == 0