From: duplo Date: Wed, 28 Jan 2009 11:34:31 +0000 (+0000) Subject: Add the output type in the project class. X-Git-Tag: 2.1.0~448 X-Git-Url: https://codewiz.org/gitweb?a=commitdiff_plain;h=1b02da529da6a84fe8b096c0e9dc242598e9fe3d;p=bertos.git Add the output type in the project class. git-svn-id: https://src.develer.com/svnoss/bertos/trunk@2234 38d2e660-2303-0410-9eaa-f027e97ec537 --- diff --git a/wizard/BOutputPage.py b/wizard/BOutputPage.py index cd1290ee..2f7629d1 100644 --- a/wizard/BOutputPage.py +++ b/wizard/BOutputPage.py @@ -40,5 +40,13 @@ class BOutputPage(BWizardPage): def isComplete(self): for button in self._buttonGroup.buttons(): if button.isChecked(): + if button is self.pageContent.bbsButton: + self._projectInfoStore("OUTPUT", "makefile") + elif button is self.pageContent.eclipseButton: + self._projectInfoStore("OUTPUT", "eclipse") + elif button is self.pageContent.codeliteButton: + self._projectInfoStore("OUTPUT", "codelite") + elif button is self.pageContent.xcodeButton: + self._projectInfoStore("OUTPUT", "xcode") return True return False \ No newline at end of file