charles/test/SConscript

16 lines
225 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)