Files
cctv130 e272b48e84 fix: windows clang build (#719)
* Update settings.cmake

Fix the issue where debugging on Windows in VSCode doesn’t work

* fix: windows clang build

The following flags are not supported in non-MSVC environments
/EHsc /wd4141 /wd4146 /wd4180 /wd4244 /wd4258 /wd4267 /wd4291
/wd4345 /wd4351 /wd4355 /wd4456 /wd4457 /wd4458 /wd4459 /wd4503
/wd4624 /wd4722 /wd4800 /wd4100 /wd4127 /wd4512 /wd4505 /wd4610
/wd4510 /wd4702 /wd4245 /wd4706 /wd4310 /wd4701 /wd4703 /wd4389
/wd4611 /wd4805 /wd4204 /wd4577 /wd4091 /wd4592 /wd4324

Update cmake_minimum_required(VERSION 3.21) to remove CMake warning.
2025-08-18 17:42:31 -04:00

170 lines
5.6 KiB
CMake

cmake_minimum_required(VERSION 3.21)
function(GetTargetTree output_variable)
if(${ARGC} LESS 1)
message(FATAL_ERROR "Usage: GetTargetTree output_var target1 target2 ...")
endif()
foreach(target ${ARGN})
list(APPEND queue "${target}")
endforeach()
while(true)
# Update the queue
unset(new_queue)
foreach(target ${queue})
list(APPEND visited_dependencies "${target}")
if (NOT TARGET "${target}")
continue()
endif()
# Always reset to empty value
set(target_link_libs "target_link_libs-NOTFOUND")
set(target_interface_link_libs "target_interface_link_libs-NOTFOUND")
# Skip utility targets
get_target_property(target_type "${target}" TYPE)
if("${target_type}" STREQUAL "UTILITY")
continue()
endif()
# Collect the results
unset(new_queue_candidates)
# We can only get LINK_LIBRARIES from normal targets
if(NOT "${target_type}" STREQUAL "INTERFACE_LIBRARY")
get_target_property(target_link_libs "${target}" LINK_LIBRARIES)
if(NOT "${target_link_libs}" STREQUAL "target_link_libs-NOTFOUND")
list(APPEND new_queue_candidates ${target_link_libs})
endif()
endif()
# INTERFACE_LINK_LIBRARIES are potentially always present
get_target_property(target_interface_link_libs "${target}" INTERFACE_LINK_LIBRARIES)
if(NOT "${target_interface_link_libs}" STREQUAL "target_interface_link_libs-NOTFOUND")
list(APPEND new_queue_candidates ${target_interface_link_libs})
endif()
# Try to find the actual file
if ("${target_type}" STREQUAL "UNKNOWN_LIBRARY" OR
"${target_type}" STREQUAL "STATIC_LIBRARY" OR
"${target_type}" STREQUAL "SHARED_LIBRARY" OR
"${target_type}" STREQUAL "IMPORTED_LIBRARY")
get_target_property(target_imported_loc "${target}" IMPORTED_LOCATION)
if(NOT "${target_imported_loc}" STREQUAL "target_imported_loc-NOTFOUND")
list(APPEND new_queue_candidates "${target_imported_loc}")
endif()
endif()
foreach(queue_candidate ${new_queue_candidates})
list(FIND visited_dependencies "${queue_candidate}" visited)
if(visited EQUAL -1)
list(APPEND new_queue "${queue_candidate}")
endif()
endforeach()
endforeach()
list(LENGTH new_queue new_queue_size)
if(${new_queue_size} EQUAL 0)
break()
endif()
set(queue ${new_queue})
endwhile()
list(REVERSE visited_dependencies)
list(REMOVE_DUPLICATES visited_dependencies)
list(REVERSE visited_dependencies)
set("${output_variable}" ${visited_dependencies} PARENT_SCOPE)
endfunction()
function(GetPublicIncludeFolders output_variable)
if(${ARGC} LESS 1)
message(FATAL_ERROR "Usage: GetPublicIncludeFolders output_var target1 target2 ...")
endif()
foreach(target ${ARGN})
if (NOT TARGET "${target}")
continue()
endif()
get_target_property(include_dir_list "${target}" INTERFACE_INCLUDE_DIRECTORIES)
if(NOT "${include_dir_list}" STREQUAL "include_dir_list-NOTFOUND")
list(APPEND collected_include_dirs "${include_dir_list}")
endif()
endforeach()
list(REMOVE_DUPLICATES collected_include_dirs)
set("${output_variable}" ${collected_include_dirs} PARENT_SCOPE)
endfunction()
function(InstallExternalTarget target_name target_path install_type installed_file_name)
# Get the optional rpath parameter
set(additional_arguments ${ARGN})
list(LENGTH additional_arguments additional_argument_count)
if("${additional_argument_count}" EQUAL 0)
elseif("${additional_argument_count}" EQUAL 1)
list(GET additional_arguments 0 rpath)
else()
message(FATAL_ERROR "InstallExternalTarget: Invalid argument count")
endif()
# We need to locate the patchelf executable to fix the rpath; search for it
# only once, and then export the variable with PARENT_SCOPE so that we can
# re-use it in the next calls
if(NOT "${rpath}" STREQUAL "")
if("${PATCHELF_LOCATION}" STREQUAL "")
find_program("program_location" "patchelf")
if("${program_location}" STREQUAL "program_location-NOTFOUND")
message(FATAL_ERROR "InstallExternalTarget: Failed to locate the patchelf executable")
endif()
# We need to set it both in local and in parent scope
set("PATCHELF_LOCATION" "${program_location}" PARENT_SCOPE)
set("PATCHELF_LOCATION" "${program_location}")
endif()
endif()
# Make sure the parameters are correct
if(NOT EXISTS "${target_path}")
message(FATAL_ERROR "InstallExternalTarget: The following path does not exists: ${target_path}")
endif()
if("${target_name}")
message(FATAL_ERROR "InstallExternalTarget: The following target already exists: ${target_name}")
endif()
if("${install_type}" STREQUAL "")
message(FATAL_ERROR "InstallExternalTarget: Invalid install type specified")
endif()
# Generate the target
set("output_file_path" "${CMAKE_CURRENT_BINARY_DIR}/${installed_file_name}")
if(NOT "${rpath}" STREQUAL "")
set(CHRPATH_COMMAND ${PATCHELF_LOCATION} --set-rpath ${rpath} ${output_file_path})
else()
set(CHRPATH_COMMAND ${CMAKE_COMMAND} -E echo 'No rpath patch needed for ${target_name}')
endif()
add_custom_command(
OUTPUT "${output_file_path}"
COMMAND "${CMAKE_COMMAND}" -E copy ${target_path} ${output_file_path}
COMMAND ${CHRPATH_COMMAND}
)
add_custom_target("${target_name}" ALL DEPENDS "${output_file_path}")
install(FILES "${output_file_path}"
TYPE ${install_type}
PERMISSIONS OWNER_READ OWNER_EXECUTE OWNER_WRITE
GROUP_READ GROUP_EXECUTE
WORLD_READ WORLD_EXECUTE
)
endfunction()