base-cpp/test/SConscript

30 lines
459 B
Text
Raw Normal View History

2014-02-28 09:58:34 -08:00
# 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.
2015-09-17 19:26:59 -07:00
'main.cc',
2014-02-28 09:58:34 -08:00
]
objs = []
for f in files:
objs.append(env.Object(f))
2015-09-17 19:26:59 -07:00
# TODO: Add the library target for the package to test to LIBS.
env.Program('test', objs, LIBS=['gtest'])