From: Aaron Ballman Date: Tue, 28 Jan 2014 16:07:10 +0000 (+0000) Subject: The llvm_headers_do_not_build project needs to be excluded from the default build... X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=7e82200a05d9f8f7d37f3078a40f31ab1be5bf67;p=oota-llvm.git The llvm_headers_do_not_build project needs to be excluded from the default build, otherwise it gets built (at least in Visual Studio 2013). Thanks to chapuni200000 for help with this in IRC! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@200321 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/CMakeLists.txt b/include/llvm/CMakeLists.txt index 32ffca75bb7..0f5c63ded67 100644 --- a/include/llvm/CMakeLists.txt +++ b/include/llvm/CMakeLists.txt @@ -2,12 +2,13 @@ add_subdirectory(IR) if( MSVC_IDE OR XCODE ) # Creates a dummy target containing all headers for the benefit of - # Visual Studio users. + # XCode and Visual Studio users. file(GLOB_RECURSE headers *.h) add_td_sources(headers) add_library(llvm_headers_do_not_build EXCLUDE_FROM_ALL # We need at least one source file: ${LLVM_MAIN_SRC_DIR}/lib/Transforms/Hello/Hello.cpp ${headers}) - set_target_properties(llvm_headers_do_not_build PROPERTIES FOLDER "Misc") + set_target_properties(llvm_headers_do_not_build PROPERTIES FOLDER "Misc" + EXCLUDE_FROM_DEFAULT_BUILD ON) endif()