Merge topic 'FindCUDA.cmake/Fix-MakeDirDuringSeparableCompilation'

0ed22502 FindCUDA: Create output dir while compiling intermediate link file (#15016)
This commit is contained in:
Brad King 2015-04-21 08:45:03 -04:00 committed by CMake Topic Stage
commit 2a28f085a5
1 changed files with 2 additions and 0 deletions

View File

@ -1585,10 +1585,12 @@ function(CUDA_LINK_SEPARABLE_COMPILATION_OBJECTS output_file cuda_target options
COMMENT "Building NVCC intermediate link file ${output_file_relative_path}"
)
else()
get_filename_component(output_file_dir "${output_file}" DIRECTORY)
add_custom_command(
TARGET ${cuda_target}
PRE_LINK
COMMAND ${CMAKE_COMMAND} -E echo "Building NVCC intermediate link file ${output_file_relative_path}"
COMMAND ${CMAKE_COMMAND} -E make_directory "${output_file_dir}"
COMMAND ${CUDA_NVCC_EXECUTABLE} ${nvcc_flags} ${flags} -dlink ${object_files} -o "${output_file}"
)
endif()