2009-01-01 09:29:44 +08:00
|
|
|
##===- utils/unittest/googletest/Makefile ------------------*- Makefile -*-===##
|
|
|
|
#
|
|
|
|
# The LLVM Compiler Infrastructure
|
|
|
|
#
|
|
|
|
# This file is distributed under the University of Illinois Open Source
|
|
|
|
# License. See LICENSE.TXT for details.
|
|
|
|
#
|
|
|
|
##===----------------------------------------------------------------------===##
|
|
|
|
|
|
|
|
LEVEL := ../../..
|
2009-09-20 14:17:12 +08:00
|
|
|
|
2009-01-01 09:29:44 +08:00
|
|
|
include $(LEVEL)/Makefile.config
|
2009-02-06 04:45:27 +08:00
|
|
|
|
2011-12-16 07:35:08 +08:00
|
|
|
LIBRARYNAME = gtest
|
2009-01-01 09:29:44 +08:00
|
|
|
BUILD_ARCHIVE = 1
|
2010-01-25 04:43:08 +08:00
|
|
|
REQUIRES_RTTI = 1
|
2010-03-10 03:24:49 +08:00
|
|
|
|
|
|
|
# Note that these flags are duplicated when building individual tests in
|
2010-03-10 06:45:10 +08:00
|
|
|
# unittests/Makefile.unittest and ../UnitTestMain/Makefile; ensure that any
|
|
|
|
# changes are made to both.
|
2009-07-27 17:39:18 +08:00
|
|
|
CPP.Flags += -I$(LLVM_SRC_ROOT)/utils/unittest/googletest/include
|
2009-02-06 04:49:49 +08:00
|
|
|
CPP.Flags += $(NO_MISSING_FIELD_INITIALIZERS) $(NO_VARIADIC_MACROS)
|
2010-03-10 03:24:49 +08:00
|
|
|
CPP.Flags += -DGTEST_HAS_RTTI=0
|
2010-06-03 15:51:58 +08:00
|
|
|
# libstdc++'s TR1 <tuple> header depends on RTTI and uses C++'0x features not
|
|
|
|
# supported by Clang, so force googletest to use its own tuple implementation.
|
|
|
|
CPP.Flags += -DGTEST_USE_OWN_TR1_TUPLE
|
2009-01-01 09:29:44 +08:00
|
|
|
|
2010-06-03 23:17:04 +08:00
|
|
|
# Disable pthreads if LLVM was configured without them.
|
|
|
|
ifneq ($(HAVE_PTHREAD), 1)
|
|
|
|
CPP.Flags += -DGTEST_HAS_PTHREAD=0
|
|
|
|
endif
|
|
|
|
|
2009-08-18 08:40:33 +08:00
|
|
|
ifeq ($(HOST_OS),MingW)
|
2009-02-12 16:02:35 +08:00
|
|
|
CPP.Flags += -DGTEST_OS_WINDOWS=1
|
|
|
|
endif
|
|
|
|
|
2009-05-09 01:32:47 +08:00
|
|
|
NO_INSTALL = 1
|
|
|
|
|
2009-01-01 09:29:44 +08:00
|
|
|
include $(LEVEL)/Makefile.common
|