Create an empty file if the user select the box.
authorduplo <duplo@38d2e660-2303-0410-9eaa-f027e97ec537>
Fri, 23 Apr 2010 10:24:01 +0000 (10:24 +0000)
committerduplo <duplo@38d2e660-2303-0410-9eaa-f027e97ec537>
Fri, 23 Apr 2010 10:24:01 +0000 (10:24 +0000)
git-svn-id: https://src.develer.com/svnoss/bertos/trunk@3504 38d2e660-2303-0410-9eaa-f027e97ec537

wizard/BProject.py

index b5617ee2132c553c08121357b747f6d03369c969..3d0f5fec1b946159cfd631ed03dc7426491baae0 100644 (file)
@@ -315,9 +315,11 @@ class BProject(object):
 
         # Copy all the files and dirs except cfg/hw/*_wiz.mk
         self._writeCustomSrcFiles()
-        # Override the main.c with the empty one if requested by the user
-        # TODO: implement it!
-        
+
+        if self.infos["EMPTY_MAIN"]:
+            # Create and empty main.c file only if the user check the box
+            self._writeMainFile(self.prjdir + "/main.c")
+
         # Create project files for selected plugins
         self._createProjectFiles()