From 2c11ee6a4591286461cf66cb3a1956fd51ecc445 Mon Sep 17 00:00:00 2001 From: NAKAMURA Takumi Date: Sun, 16 Feb 2014 12:14:03 +0000 Subject: [PATCH] LLVMExports.cmake: Exclude gtest since they are not installed. FIXME: gtest might be included if external project could refer to the build tree. llvm-svn: 201488 --- cmake/modules/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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))