Build basics!

This commit is contained in:
Eryn Wells 2014-08-08 21:12:44 -07:00
parent da127ccde3
commit 3bf72bd78d
2 changed files with 14 additions and 0 deletions

View file

@ -8,6 +8,7 @@ Import('env')
objs = []
subdirs = [
'basics',
'yaml',
]

13
src/basics/SConscript Normal file
View file

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