mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-19 01:13:25 +00:00
e5f9471bd2
* Removed gtest_main.cc: we have our own main() elsewhere * Simplified the Makefile as we don't need SOURCES * Moved the internal header to gtest/internal/ * Simplified the Makefile to remove -I param to CPP.Flags * Updated README.LLVM with all the steps I took to massage GTest to work in LLVM so far git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@61540 91177308-0d34-0410-b5e6-96231b3b80d8
19 lines
598 B
Makefile
19 lines
598 B
Makefile
##===- 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
|
|
CPP.Flags += -I$(LLVM_SRC_ROOT)/utils/unittest/googletest/include/
|
|
CPP.Flags += -Wno-missing-field-initializers -Wno-variadic-macros
|
|
|
|
include $(LEVEL)/Makefile.common
|