Add gtest
This commit is contained in:
parent
4799a7fe49
commit
d9a8920cdf
41 changed files with 30833 additions and 4 deletions
18
gtest/SConscript
Normal file
18
gtest/SConscript
Normal 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')
|
Loading…
Add table
Add a link
Reference in a new issue