Just dumps YAML parser events to the console. Handy for a few things I'm pondering...
8 lines
181 B
Python
8 lines
181 B
Python
# SConscript
|
|
# vim: set ft=python:
|
|
# Eryn Wells <eryn@erynwells.me>
|
|
|
|
Import('env')
|
|
|
|
prog = env.Program('yamldumper', ['yamldumper.cc'], LIBS=['yaml'])
|
|
env.Alias('yamldumper', prog)
|