[llvm-commits] [llvm] r166503 - /llvm/trunk/cmake/modules/LLVMProcessSources.cmake
Jordan Rose
jordan_rose at apple.com
Tue Oct 23 14:36:55 PDT 2012
Author: jrose
Date: Tue Oct 23 16:36:55 2012
New Revision: 166503
URL: http://llvm.org/viewvc/llvm-project?rev=166503&view=rev
Log:
CMake: Include private headers / tablegen files in generated Xcode projects.
Modified:
llvm/trunk/cmake/modules/LLVMProcessSources.cmake
Modified: llvm/trunk/cmake/modules/LLVMProcessSources.cmake
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/cmake/modules/LLVMProcessSources.cmake?rev=166503&r1=166502&r2=166503&view=diff
==============================================================================
--- llvm/trunk/cmake/modules/LLVMProcessSources.cmake (original)
+++ llvm/trunk/cmake/modules/LLVMProcessSources.cmake Tue Oct 23 16:36:55 2012
@@ -48,7 +48,7 @@
set( f ${CMAKE_CURRENT_SOURCE_DIR}/${s} )
add_file_dependencies( ${f} ${TABLEGEN_OUTPUT} )
endforeach(s)
- if( MSVC_IDE )
+ if( MSVC_IDE OR XCODE )
# This adds .td and .h files to the Visual Studio solution:
# FIXME: Shall we handle *.def here?
add_td_sources(sources)
More information about the llvm-commits
mailing list