2009-01-01 01:29:44 +00: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 06:17:12 +00:00
|
|
|
|
2009-01-01 01:29:44 +00:00
|
|
|
include $(LEVEL)/Makefile.config
|
2009-02-05 20:45:27 +00:00
|
|
|
|
2009-01-01 01:29:44 +00:00
|
|
|
LIBRARYNAME = GoogleTest
|
|
|
|
BUILD_ARCHIVE = 1
|
2010-01-24 20:43:08 +00:00
|
|
|
REQUIRES_RTTI = 1
|
2010-03-09 19:24:49 +00:00
|
|
|
|
|
|
|
# Note that these flags are duplicated when building individual tests in
|
|
|
|
# unittests/Makefile.unittest; ensure that any changes are made to both.
|
2009-07-27 09:39:18 +00:00
|
|
|
CPP.Flags += -I$(LLVM_SRC_ROOT)/utils/unittest/googletest/include
|
2009-02-05 20:49:49 +00:00
|
|
|
CPP.Flags += $(NO_MISSING_FIELD_INITIALIZERS) $(NO_VARIADIC_MACROS)
|
2010-03-09 19:24:49 +00:00
|
|
|
CPP.Flags += -DGTEST_HAS_RTTI=0
|
|
|
|
# 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.
|
|
|
|
# When we import googletest >=1.4.0, we can drop this line.
|
|
|
|
CPP.Flags += -DGTEST_HAS_TR1_TUPLE=0
|
|
|
|
|
2009-01-01 01:29:44 +00:00
|
|
|
|
2009-08-18 00:40:33 +00:00
|
|
|
ifeq ($(HOST_OS),MingW)
|
2009-02-12 08:02:35 +00:00
|
|
|
CPP.Flags += -DGTEST_OS_WINDOWS=1
|
|
|
|
endif
|
|
|
|
|
2009-05-08 17:32:47 +00:00
|
|
|
NO_INSTALL = 1
|
|
|
|
|
2009-01-01 01:29:44 +00:00
|
|
|
include $(LEVEL)/Makefile.common
|