From: Chris Bieneman Date: Tue, 19 Jan 2016 23:01:38 +0000 (+0000) Subject: [CMake] Don't apply Export set to clang tools X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=82991f2a04c2f403d2473bd6c6bb659cf15ab7f5;p=clang [CMake] Don't apply Export set to clang tools I can't apply export to tools without getting some strange CMake spew. The behavior here is a bit unexpected. CMake is complaining about static link dependencies not being in the same export set, which shouldn't matter. In the short term it is easier to just remove the export set (which was just added in r258209) while I sort this out. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@258214 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/CMakeLists.txt b/CMakeLists.txt index 272c80eaf3..ca3b51fddd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -447,7 +447,6 @@ endmacro(add_clang_executable) macro(add_clang_tool name) add_clang_executable(${name} ${ARGN}) install(TARGETS ${name} - EXPORT ClangTargets RUNTIME DESTINATION bin COMPONENT ${name})