add 'default' keyword to python module
authorEvan Martin <martine@danga.com>
Tue, 6 Sep 2011 19:59:47 +0000 (12:59 -0700)
committerEvan Martin <martine@danga.com>
Tue, 6 Sep 2011 19:59:47 +0000 (12:59 -0700)
misc/ninja_syntax.py

index f924519..ba7b55b 100644 (file)
@@ -60,6 +60,9 @@ class Writer(object):
     def subninja(self, path):
         self._line('subninja %s' % path)
 
+    def default(self, paths):
+        self._line('default %s' % ' '.join(self._as_list(paths)))
+
     def _line(self, text, indent=0):
         """Write 'text' word-wrapped at self.width characters."""
         leading_space = '  ' * indent