diff options
Diffstat (limited to 'llvm')
| -rw-r--r-- | llvm/cmake/modules/LLVMProcessSources.cmake | 3 | 
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/cmake/modules/LLVMProcessSources.cmake b/llvm/cmake/modules/LLVMProcessSources.cmake index bb11e9cad6c..0e410edc15f 100644 --- a/llvm/cmake/modules/LLVMProcessSources.cmake +++ b/llvm/cmake/modules/LLVMProcessSources.cmake @@ -29,7 +29,7 @@ endmacro(add_td_sources)  macro(add_header_files srcs) -  file(GLOB hds *.h *.def) +  file(GLOB hds *.h)    if( hds )      set_source_files_properties(${hds} PROPERTIES HEADER_FILE_ONLY ON)      list(APPEND ${srcs} ${hds}) @@ -50,6 +50,7 @@ function(llvm_process_sources OUT_VAR)    endforeach(s)    if( MSVC_IDE )      # This adds .td and .h files to the Visual Studio solution: +    # FIXME: Shall we handle *.def here?      add_td_sources(sources)      add_header_files(sources)    endif()  | 

