charles/test/SConscript

28 lines
430 B
Text
Raw Normal View History

2013-09-08 12:14:36 -07:00
# SConscript
# vim: set ft=python:
# Eryn Wells <eryn@erynwells.me>
Import('env')
2014-02-28 09:58:34 -08:00
subdirs = [
# TODO: Put subdirectories here.
]
for d in subdirs:
env.SConscript(env.Dir(d).File('SConscript'), {'env': env})
2014-02-28 09:58:34 -08:00
files = [
'test_basics.cc',
'test_charles.cc',
2014-02-28 09:58:34 -08:00
]
objs = []
for f in files:
objs.append(env.Object(f))
prog = env.Program('test_charles', objs, LIBS=['gtest', 'charles'])
2013-09-08 14:53:11 -07:00
env.Alias('test', prog)