charles/test/SConscript

16 lines
224 B
Text
Raw Normal View History

2013-09-08 12:14:36 -07:00
# SConscript
# vim: set ft=python:
#
# SConscript for building tests for charles.
#
# Eryn Wells <eryn@erynwells.me>
Import('env')
files = Split("""
""")
test = env.Program('test_charles', files)
2013-09-08 12:21:24 -07:00
env.Alias('test', test)