2009-01-01 02:29:44 +01: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 08:17:12 +02:00
|
|
|
|
2009-01-01 02:29:44 +01:00
|
|
|
include $(LEVEL)/Makefile.config
|
2009-02-05 21:45:27 +01:00
|
|
|
|
2011-12-16 00:35:08 +01:00
|
|
|
LIBRARYNAME = gtest
|
2009-01-01 02:29:44 +01:00
|
|
|
BUILD_ARCHIVE = 1
|
2010-01-24 21:43:08 +01:00
|
|
|
REQUIRES_RTTI = 1
|
2010-03-09 20:24:49 +01:00
|
|
|
|
|
|
|
# Note that these flags are duplicated when building individual tests in
|
2010-03-09 23:45:10 +01:00
|
|
|
# unittests/Makefile.unittest and ../UnitTestMain/Makefile; ensure that any
|
|
|
|
# changes are made to both.
|
2009-07-27 11:39:18 +02:00
|
|
|
CPP.Flags += -I$(LLVM_SRC_ROOT)/utils/unittest/googletest/include
|
2009-02-05 21:49:49 +01:00
|
|
|
CPP.Flags += $(NO_MISSING_FIELD_INITIALIZERS) $(NO_VARIADIC_MACROS)
|
2010-03-09 20:24:49 +01:00
|
|
|
CPP.Flags += -DGTEST_HAS_RTTI=0
|
2010-06-03 09:51:58 +02: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 02:29:44 +01:00
|
|
|
|
2010-06-03 17:17:04 +02:00
|
|
|
# Disable pthreads if LLVM was configured without them.
|
|
|
|
ifneq ($(HAVE_PTHREAD), 1)
|
|
|
|
CPP.Flags += -DGTEST_HAS_PTHREAD=0
|
|
|
|
endif
|
|
|
|
|
2009-08-18 02:40:33 +02:00
|
|
|
ifeq ($(HOST_OS),MingW)
|
2009-02-12 09:02:35 +01:00
|
|
|
CPP.Flags += -DGTEST_OS_WINDOWS=1
|
|
|
|
endif
|
|
|
|
|
2009-05-08 19:32:47 +02:00
|
|
|
NO_INSTALL = 1
|
|
|
|
|
2009-01-01 02:29:44 +01:00
|
|
|
include $(LEVEL)/Makefile.common
|