Big YAML parser cleanup
This commit is contained in:
parent
687de91a81
commit
d20e4154fe
13 changed files with 409 additions and 207 deletions
18
src/yaml/SConscript
Normal file
18
src/yaml/SConscript
Normal 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')
|
Loading…
Add table
Add a link
Reference in a new issue