charles/test/SConscript

15 lines
224 B
Python

# 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)
env.Alias('test', test)