base-cpp/lib/gtest/SConscript

28 lines
587 B
Text
Raw Normal View History

2014-02-28 09:58:08 -08:00
# SConscript
# vim: set ft=python:
#
2015-10-03 10:43:18 -07:00
# Build file for the gtest library. This file also serves as an example for how
# to build libraries for inclusion with my SCons environment. Libraries should
# return a build object.
#
2014-02-28 09:58:08 -08:00
# Eryn Wells <eryn@erynwells.me>
import os.path
Import('env')
2015-10-03 10:43:18 -07:00
env.Append(CPPPATH=[Dir('include').srcnode()])
2014-02-28 09:58:08 -08:00
files = [
'gtest-all.cc',
'gtest-death-test.cc',
'gtest-filepath.cc',
'gtest-port.cc',
'gtest-printers.cc',
'gtest-test-part.cc',
'gtest-typed-test.cc',
'gtest.cc',
]
2015-10-03 10:43:18 -07:00
gtest = env.Library('gtest', files)
Return('gtest')