diff python/ppci/buildtasks.py @ 332:87feb8a23b4d

Added task list command
author Windel Bouwman
date Fri, 07 Feb 2014 12:51:55 +0100
parents a78b41ff6ad2
children 6f4753202b9a
line wrap: on
line diff
--- a/python/ppci/buildtasks.py	Fri Feb 07 12:39:59 2014 +0100
+++ b/python/ppci/buildtasks.py	Fri Feb 07 12:51:55 2014 +0100
@@ -80,13 +80,4 @@
     pass
 
 
-def load_recipe(recipe_file, runner):
-    """ Loads a recipe dictionary into a task runner """
-    for command, value in recipe:
-        if command == 'compile':
-            sources = value['']
-            target = value['target']
-            runner.add_task(Compile())
-        else:
-            raise Exception()