charles/test/SConscript
2013-09-08 15:18:22 -07:00

20 lines
375 B
Python

# SConscript
# vim: set ft=python:
#
# SConscript for building tests for charles.
#
# Eryn Wells <eryn@erynwells.me>
Import('env')
Import('charles_lib')
files = Split("""
test_basics.c
test_charles.c
test_object.c
""")
test_env = env.Clone()
test_env.Append(LIBS=['check'])
prog = test_env.Program('test_charles', [charles_lib, files])
env.Alias('test', prog)