--- a/Project/Project.py Sat Apr 14 18:48:38 2018 +0200 +++ b/Project/Project.py Sun Apr 15 11:36:43 2018 +0200 @@ -5377,3 +5377,29 @@ """ # TODO: implement this pass + + def hasDefaultMakeParameters(self): + """ + Private method to test, if the project contains the default make + parameters. + + @return flag indicating default parameter set + @rtype bool + """ + return self.pdata["MAKEPARAMS"] == { + "MakeEnabled": False, + "MakeExecutable": "", + "MakeFile": "", + "MakeTarget": "", + "MakeParameters": "", + "MakeTestOnly": True, + } + + def isMakeEnabled(self): + """ + Public method to test, if make is enabled for the project. + + @return flag indicating enabled make support + @rtype bool + """ + return self.pdata["MAKEPARAMS"]["MakeEnabled"]