charles/src/yaml/SConscript

19 lines
223 B
Text
Raw Normal View History

2014-07-15 17:27:27 -07:00
# 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')