SConscript revision 12312:5c73feeac300
112275Sgabeblack@google.com# Copyright 2017 Google Inc. 212275Sgabeblack@google.com# 312275Sgabeblack@google.com# Redistribution and use in source and binary forms, with or without 412275Sgabeblack@google.com# modification, are permitted provided that the following conditions are 512275Sgabeblack@google.com# met: redistributions of source code must retain the above copyright 612275Sgabeblack@google.com# notice, this list of conditions and the following disclaimer; 712275Sgabeblack@google.com# redistributions in binary form must reproduce the above copyright 812275Sgabeblack@google.com# notice, this list of conditions and the following disclaimer in the 912275Sgabeblack@google.com# documentation and/or other materials provided with the distribution; 1012275Sgabeblack@google.com# neither the name of the copyright holders nor the names of its 1112275Sgabeblack@google.com# contributors may be used to endorse or promote products derived from 1212275Sgabeblack@google.com# this software without specific prior written permission. 1312275Sgabeblack@google.com# 1412275Sgabeblack@google.com# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 1512275Sgabeblack@google.com# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 1612275Sgabeblack@google.com# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 1712275Sgabeblack@google.com# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 1812275Sgabeblack@google.com# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 1912275Sgabeblack@google.com# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 2012275Sgabeblack@google.com# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 2112275Sgabeblack@google.com# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 2212275Sgabeblack@google.com# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 2312275Sgabeblack@google.com# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 2412275Sgabeblack@google.com# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 2512275Sgabeblack@google.com 2612275Sgabeblack@google.comImport('main') 2712275Sgabeblack@google.com 2812275Sgabeblack@google.com# The root of the build directory. 2912275Sgabeblack@google.combuild = Dir('.') 3012275Sgabeblack@google.com# The root of the original directory. 3112275Sgabeblack@google.combase = build.srcdir 3212275Sgabeblack@google.com# Include files from the original directory. 3312275Sgabeblack@google.cominclude = base.Dir('include') 3412275Sgabeblack@google.com# Use source files from the build directory so build products end up there. 3512294Sgabeblack@google.comsrc = Dir('src') 3612288Sgabeblack@google.com 3712294Sgabeblack@google.commain.Append(CPPPATH=[include]) 3812293Sgabeblack@google.commain.Append(LIBPATH=[build]) 3912287Sgabeblack@google.com 4012275Sgabeblack@google.comenv = main.Clone(CPPFLAGS='-g -Wall -Wextra -pthread' 4112288Sgabeblack@google.com ' -Wno-undef -isystem %s' % include) 42env.Append(CPPPATH=[base]) 43 44gtest_all = env.Object(src.File('gtest-all.cc')) 45gtest_main = env.StaticLibrary( 46 target='gtest_main', source=[gtest_all, src.File('gtest_main.cc')]) 47 48main['GTEST_LIBS'] = ['gtest_main', 'pthread'] 49main['GTEST_CPPFLAGS'] = '-pthread -Wno-undef -isystem %s' % include.abspath 50