diff options
Diffstat (limited to 'utils/unittest/googletest/Makefile')
-rw-r--r-- | utils/unittest/googletest/Makefile | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/utils/unittest/googletest/Makefile b/utils/unittest/googletest/Makefile new file mode 100644 index 0000000..d73e85a --- /dev/null +++ b/utils/unittest/googletest/Makefile @@ -0,0 +1,20 @@ +##===- 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 := ../../.. +include $(LEVEL)/Makefile.config + +LIBRARYNAME = GoogleTest +BUILD_ARCHIVE = 1 +SOURCES = gtest-all.cc +CPP.Flags += -I$(LLVM_SRC_ROOT)/utils/unittest/googletest/ +CPP.Flags += -I$(LLVM_SRC_ROOT)/utils/unittest/googletest/include/ +CPP.Flags += -Wno-missing-field-initializers -Wno-variadic-macros + +include $(LEVEL)/Makefile.common |