summaryrefslogtreecommitdiffstats
path: root/llvm
diff options
context:
space:
mode:
authorAaron Ballman <aaron@aaronballman.com>2014-01-28 16:07:10 +0000
committerAaron Ballman <aaron@aaronballman.com>2014-01-28 16:07:10 +0000
commit6eca4eff1950ca9c39d3c41b798c94cf7d8208f7 (patch)
treef9388525b5ddaa7df8519849f9cf95062cc0d6d3 /llvm
parente9beea24ef11cd5b57f688918e5e8a97471fb10d (diff)
downloadbcm5719-llvm-6eca4eff1950ca9c39d3c41b798c94cf7d8208f7.tar.gz
bcm5719-llvm-6eca4eff1950ca9c39d3c41b798c94cf7d8208f7.zip
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! llvm-svn: 200321
Diffstat (limited to 'llvm')
-rw-r--r--llvm/include/llvm/CMakeLists.txt5
1 files changed, 3 insertions, 2 deletions
diff --git a/llvm/include/llvm/CMakeLists.txt b/llvm/include/llvm/CMakeLists.txt
index 32ffca75bb7..0f5c63ded67 100644
--- a/llvm/include/llvm/CMakeLists.txt
+++ b/llvm/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()
OpenPOWER on IntegriCloud