Add gtest

This commit is contained in:
Eryn Wells 2013-09-12 15:50:40 -07:00
parent 4799a7fe49
commit d9a8920cdf
41 changed files with 30833 additions and 4 deletions

18
gtest/SConscript Normal file
View file

@ -0,0 +1,18 @@
# SConscript
# vim: set ft=python:
#
# SConscript for Google C++ Testing Framework.
#
# Eryn Wells <eryn@erynwells.me>
Import('env')
files = Glob('src/*.cc')
gtest_env = env.Clone()
gtest_env['CPPPATH'] = ['.', './include']
gtest_env.Append(CPPDEFINES=['GTEST_USE_OWN_TR1_TUPLE'])
gtest = gtest_env.Library('gtest', files)
env.Alias('gtest', gtest)
Return('gtest')