[llvm] r215610 - Remove llvm_headers_do_not_build for the benefit of XCode and Visual Studio users.

Michael J. Spencer bigcheesegs at gmail.com
Wed Aug 13 17:51:47 PDT 2014


Author: mspencer
Date: Wed Aug 13 19:51:47 2014
New Revision: 215610

URL: http://llvm.org/viewvc/llvm-project?rev=215610&view=rev
Log:
Remove llvm_headers_do_not_build for the benefit of XCode and Visual Studio users.

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=215610&r1=215609&r2=215610&view=diff
==============================================================================
--- llvm/trunk/include/llvm/CMakeLists.txt (original)
+++ llvm/trunk/include/llvm/CMakeLists.txt Wed Aug 13 19:51:47 2014
@@ -1,18 +1,5 @@
 add_subdirectory(IR)
 
-if( MSVC_IDE OR XCODE )
-  # Creates a dummy target containing all headers for the benefit of
-  # 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"
-                        EXCLUDE_FROM_DEFAULT_BUILD ON)
-endif()
-
 # If we're doing an out-of-tree build, copy a module map for generated
 # header files into the build area.
 if (NOT "${CMAKE_SOURCE_DIR}" STREQUAL "${CMAKE_BINARY_DIR}")





More information about the llvm-commits mailing list