Big YAML parser cleanup

This commit is contained in:
Eryn Wells 2014-07-15 17:27:27 -07:00
parent 687de91a81
commit d20e4154fe
13 changed files with 409 additions and 207 deletions

18
src/yaml/SConscript Normal file
View file

@ -0,0 +1,18 @@
# SConscript
# vim: set ft=python:
# Eryn Wells <eryn@erynwells.me>
Import('env')
files = [
'parsers.cc',
'scene_parser.cc',
]
objs = []
for f in files:
objs.append(env.Object(f))
print objs
Return('objs')