charles/test/SConscript

21 lines
375 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')
2013-09-08 14:53:11 -07:00
Import('charles_lib')
2013-09-08 12:14:36 -07:00
files = Split("""
test_basics.c
test_charles.c
2013-09-08 15:18:15 -07:00
test_object.c
2013-09-08 12:14:36 -07:00
""")
test_env = env.Clone()
test_env.Append(LIBS=['check'])
2013-09-08 14:53:11 -07:00
prog = test_env.Program('test_charles', [charles_lib, files])
env.Alias('test', prog)