From: NAKAMURA Takumi Date: Sun, 16 Feb 2014 12:14:03 +0000 (+0000) Subject: LLVMExports.cmake: Exclude gtest since they are not installed. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=88fae4e86f258336fceea8cdbc8d854777ce2ceb;p=oota-llvm.git LLVMExports.cmake: Exclude gtest since they are not installed. FIXME: gtest might be included if external project could refer to the build tree. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@201488 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/cmake/modules/Makefile b/cmake/modules/Makefile index 52140a605fe..bda28c9ce66 100644 --- a/cmake/modules/Makefile +++ b/cmake/modules/Makefile @@ -71,7 +71,7 @@ $(PROJ_OBJ_DIR)/LLVMExports.cmake: $(LLVMBuildCMakeExportsFrag) echo 'set_property(TARGET '"$$lib"' PROPERTY IMPORTED_LOCATION "'"$(PROJ_libdir)/lib$$lib.a"'")' ; \ done && \ cat "$(LLVMBuildCMakeExportsFrag)" \ - ) > $@ + ) | grep -v gtest > $@ all-local:: $(addprefix $(PROJ_OBJ_DIR)/, $(OBJMODS))