Basic template SConscript

This commit is contained in:
Eryn Wells 2014-01-30 15:13:54 -08:00
parent ab85d0cd32
commit 2134f6a013

View file

@ -0,0 +1,25 @@
# SConscript
# vim: set ft=python:
#
# Eryn Wells <eryn@erynwells.me>
import os.path
Import('env')
subdirs = [
# TODO: Put subdirectories here.
]
for d in subdirs:
env.SConscript(os.path.join(d, 'SConscript'), {'env': env})
files = [
# TODO: Put files here.
]
objs = []
for f in files:
objs.append(env.Object(f))