Add yamldumper utility

Just dumps YAML parser events to the console. Handy for a few things I'm pondering...
This commit is contained in:
Eryn Wells 2014-08-20 10:36:34 -07:00
parent 1e73d839f3
commit 36a7954df4
3 changed files with 120 additions and 1 deletions

View file

@ -0,0 +1,8 @@
# SConscript
# vim: set ft=python:
# Eryn Wells <eryn@erynwells.me>
Import('env')
prog = env.Program('yamldumper', ['yamldumper.cc'], LIBS=['yaml'])
env.Alias('yamldumper', prog)