charles/test/SConscript

21 lines
357 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-12 15:50:40 -07:00
Import('gtest')
2013-09-08 14:53:11 -07:00
Import('charles_lib')
2013-09-08 12:14:36 -07:00
files = Split("""
2013-09-09 08:52:35 -07:00
test_asserts.c
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
""")
2013-09-12 15:50:40 -07:00
prog = env.Program('test_charles', [gtest, charles_lib, files])
2013-09-08 14:53:11 -07:00
env.Alias('test', prog)