Add test SConscript
This commit is contained in:
parent
c9c1ba5972
commit
47ca68760a
1 changed files with 25 additions and 0 deletions
25
test/SConscript
Normal file
25
test/SConscript
Normal 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))
|
Loading…
Add table
Add a link
Reference in a new issue