2008-11-14 23:06:14 +01:00
|
|
|
include(AddFileDependencies)
|
2014-01-20 18:05:49 +01:00
|
|
|
include(CMakeParseArguments)
|
2008-11-14 23:06:14 +01:00
|
|
|
|
2011-01-11 13:31:34 +01:00
|
|
|
function(llvm_replace_compiler_option var old new)
|
2011-01-07 21:31:03 +01:00
|
|
|
# Replaces a compiler option or switch `old' in `var' by `new'.
|
|
|
|
# If `old' is not in `var', appends `new' to `var'.
|
|
|
|
# Example: llvm_replace_compiler_option(CMAKE_CXX_FLAGS_RELEASE "-O3" "-O2")
|
2011-01-11 13:31:34 +01:00
|
|
|
# If the option already is on the variable, don't add it:
|
|
|
|
if( "${${var}}" MATCHES "(^| )${new}($| )" )
|
|
|
|
set(n "")
|
|
|
|
else()
|
|
|
|
set(n "${new}")
|
|
|
|
endif()
|
2011-01-07 21:31:03 +01:00
|
|
|
if( "${${var}}" MATCHES "(^| )${old}($| )" )
|
2011-01-11 13:31:34 +01:00
|
|
|
string( REGEX REPLACE "(^| )${old}($| )" " ${n} " ${var} "${${var}}" )
|
2011-01-07 21:31:03 +01:00
|
|
|
else()
|
2011-01-11 13:31:34 +01:00
|
|
|
set( ${var} "${${var}} ${n}" )
|
2011-01-07 21:31:03 +01:00
|
|
|
endif()
|
2011-01-11 13:31:34 +01:00
|
|
|
set( ${var} "${${var}}" PARENT_SCOPE )
|
|
|
|
endfunction(llvm_replace_compiler_option)
|
2008-11-15 03:08:08 +01:00
|
|
|
|
|
|
|
macro(add_td_sources srcs)
|
|
|
|
file(GLOB tds *.td)
|
|
|
|
if( tds )
|
|
|
|
source_group("TableGen descriptions" FILES ${tds})
|
|
|
|
set_source_files_properties(${tds} PROPERTIES HEADER_FILE_ONLY ON)
|
|
|
|
list(APPEND ${srcs} ${tds})
|
|
|
|
endif()
|
|
|
|
endmacro(add_td_sources)
|
|
|
|
|
|
|
|
|
|
|
|
macro(add_header_files srcs)
|
2012-06-24 05:50:58 +02:00
|
|
|
file(GLOB hds *.h)
|
2008-11-15 03:08:08 +01:00
|
|
|
if( hds )
|
|
|
|
set_source_files_properties(${hds} PROPERTIES HEADER_FILE_ONLY ON)
|
|
|
|
list(APPEND ${srcs} ${hds})
|
|
|
|
endif()
|
|
|
|
endmacro(add_header_files)
|
|
|
|
|
|
|
|
|
|
|
|
function(llvm_process_sources OUT_VAR)
|
2014-01-20 11:20:23 +01:00
|
|
|
cmake_parse_arguments(ARG "" "" "ADDITIONAL_HEADERS" ${ARGN})
|
|
|
|
set(sources ${ARG_UNPARSED_ARGUMENTS})
|
2009-11-02 20:11:03 +01:00
|
|
|
llvm_check_source_file_list( ${sources} )
|
2012-10-23 23:36:55 +02:00
|
|
|
if( MSVC_IDE OR XCODE )
|
2008-11-15 03:08:08 +01:00
|
|
|
# This adds .td and .h files to the Visual Studio solution:
|
|
|
|
add_td_sources(sources)
|
|
|
|
add_header_files(sources)
|
2014-01-20 11:20:23 +01:00
|
|
|
set_source_files_properties(${ARG_ADDITIONAL_HEADERS} PROPERTIES HEADER_FILE_ONLY ON)
|
|
|
|
list(APPEND sources ${ARG_ADDITIONAL_HEADERS})
|
2008-11-15 03:08:08 +01:00
|
|
|
endif()
|
2010-10-17 04:26:16 +02:00
|
|
|
|
2008-11-15 03:08:08 +01:00
|
|
|
set( ${OUT_VAR} ${sources} PARENT_SCOPE )
|
2008-11-14 23:06:14 +01:00
|
|
|
endfunction(llvm_process_sources)
|
2009-11-02 20:11:03 +01:00
|
|
|
|
|
|
|
|
|
|
|
function(llvm_check_source_file_list)
|
|
|
|
set(listed ${ARGN})
|
2014-01-28 10:43:49 +01:00
|
|
|
file(GLOB globbed *.c *.cpp)
|
2009-11-02 20:11:03 +01:00
|
|
|
foreach(g ${globbed})
|
|
|
|
get_filename_component(fn ${g} NAME)
|
2012-06-21 11:51:26 +02:00
|
|
|
list(FIND LLVM_OPTIONAL_SOURCES ${fn} idx)
|
2009-11-02 20:11:03 +01:00
|
|
|
if( idx LESS 0 )
|
2012-06-21 11:51:26 +02:00
|
|
|
list(FIND listed ${fn} idx)
|
|
|
|
if( idx LESS 0 )
|
|
|
|
message(SEND_ERROR "Found unknown source file ${g}
|
2014-01-28 10:43:49 +01:00
|
|
|
Please update ${CMAKE_CURRENT_LIST_FILE}\n")
|
2012-06-21 11:51:26 +02:00
|
|
|
endif()
|
2009-11-02 20:11:03 +01:00
|
|
|
endif()
|
|
|
|
endforeach()
|
|
|
|
endfunction(llvm_check_source_file_list)
|