function(llvm_replace_compiler_option var old new
)
# 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")
# If the option already is on the variable, don't add it:
if( "${${var}}" MATCHES "(^| )${new}($| )" )
if( "${${var}}" MATCHES "(^| )${old}($| )" )
string( REGEX REPLACE "(^| )${old}($| )" " ${n} " ${var} "${${var}}" )
set( ${var} "${${var}} ${n}" )
set( ${var} "${${var}}" PARENT_SCOPE )
macro(add_td_sources srcs
)
list(APPEND ${srcs} ${tds})
function(add_header_files_for_glob hdrs_out glob
)
# Explicit existence check is necessary to filter dangling symlinks
# out. See https://bugs.gentoo.org/674662.
list(APPEND filtered
${file})
set(${hdrs_out} ${filtered} PARENT_SCOPE)
function(find_all_header_files hdrs_out additional_headerdirs
)
add_header_files_for_glob(hds *.h)
list(APPEND all_headers
${hds})
foreach(additional_dir
${additional_headerdirs})
add_header_files_for_glob(hds "${additional_dir}/*.h")
list(APPEND all_headers
${hds})
add_header_files_for_glob(hds "${additional_dir}/*.inc")
list(APPEND all_headers
${hds})
set( ${hdrs_out} ${all_headers} PARENT_SCOPE )
cmake_parse_arguments(ARG "PARTIAL_SOURCES_INTENDED" "" "ADDITIONAL_HEADERS;ADDITIONAL_HEADER_DIRS" ${ARGN})
set(sources
${ARG_UNPARSED_ARGUMENTS})
if (NOT ARG_PARTIAL_SOURCES_INTENDED
)
llvm_check_source_file_list(${sources})
# This adds .td and .h files to the Visual Studio solution:
add_td_sources(sources)
find_all_header_files(hdrs "${ARG_ADDITIONAL_HEADER_DIRS}")
list(APPEND sources
${ARG_ADDITIONAL_HEADERS} ${hdrs})
set( ${OUT_VAR} ${sources} PARENT_SCOPE )
cmake_parse_arguments(ARG "" "SOURCE_DIR" "" ${ARGN})
foreach(l
${ARG_UNPARSED_ARGUMENTS})
list(APPEND listed
${fp})
"${ARG_SOURCE_DIR}/*.c" "${ARG_SOURCE_DIR}/*.cpp")
file(GLOB globbed *.c *.cpp
)
# Don't reject hidden files. Some editors create backups in the
# same directory as the file.
if (NOT "${fn}" MATCHES "^\\.")
if(NOT ${entry} IN_LIST LLVM_OPTIONAL_SOURCES
)
if(NOT ${gp} IN_LIST listed
)
set(fn_relative
"${ARG_SOURCE_DIR}/${fn}")
message(SEND_ERROR "Found unknown source file ${fn_relative}
Please update ${CMAKE_CURRENT_LIST_FILE}\n")