Home | History | Annotate | Download | only in vs-macros
      1 #!/usr/bin/env python
      2 
      3 # Copyright (c) 2012 Google Inc. All rights reserved.
      4 # Use of this source code is governed by a BSD-style license that can be
      5 # found in the LICENSE file.
      6 
      7 from optparse import OptionParser
      8 
      9 parser = OptionParser()
     10 parser.add_option('-a', dest='platform')
     11 parser.add_option('-o', dest='output')
     12 parser.add_option('-p', dest='path')
     13 (options, args) = parser.parse_args()
     14 
     15 f = open(options.output, 'w')
     16 print >>f, 'options', options
     17 print >>f, 'args', args
     18 f.close()
     19