[llvm] r200321 - 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).
Aaron Ballman
aaron at aaronballman.com
Tue Jan 28 08:07:10 PST 2014
Author: aaronballman
Date: Tue Jan 28 10:07:10 2014
New Revision: 200321
URL: http://llvm.org/viewvc/llvm-project?rev=200321&view=rev
Log:
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!
Modified:
llvm/trunk/include/llvm/CMakeLists.txt
Modified: llvm/trunk/include/llvm/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/CMakeLists.txt?rev=200321&r1=200320&r2=200321&view=diff
==============================================================================
--- llvm/trunk/include/llvm/CMakeLists.txt (original)
+++ llvm/trunk/include/llvm/CMakeLists.txt Tue Jan 28 10:07:10 2014
@@ -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()
More information about the llvm-commits
mailing list