Skip to content

Commit

Permalink
Merge branch 'develop' into humble
Browse files Browse the repository at this point in the history
  • Loading branch information
amock committed Oct 18, 2024
2 parents 2554799 + 6641734 commit 4985959
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
6 changes: 4 additions & 2 deletions CMakeModules/max_cuda_gcc_version.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,9 @@
# message(STATUS "Maximum allowed gcc version for cuda is: ${MAX_CUDA_GCC_VERSION}")
function(max_cuda_gcc_version _CUDA_VERSION _MAX_GCC_VERSION)

if(${_CUDA_VERSION} VERSION_GREATER_EQUAL 12.0.0)
if(${_CUDA_VERSION} VERSION_GREATER_EQUAL 12.4.0)
set(${_MAX_GCC_VERSION} 13 PARENT_SCOPE)
elseif(${_CUDA_VERSION} VERSION_GREATER_EQUAL 12.0.0)
set(${_MAX_GCC_VERSION} 12 PARENT_SCOPE)
elseif(${_CUDA_VERSION} VERSION_GREATER 11.4.0) # 11.4.1+, 11.5 -> 11
set(${_MAX_GCC_VERSION} 11 PARENT_SCOPE)
Expand Down Expand Up @@ -48,4 +50,4 @@ elseif(${_CUDA_VERSION} VERSION_GREATER 3) # 4.0 -> 4.4
set(${_MAX_GCC_VERSION} 4.4 PARENT_SCOPE)
endif()

endfunction()
endfunction()
1 change: 1 addition & 0 deletions package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ The Las Vegas Surface Reconstruction Toolkit is an Open Source toolkit to recons
<depend>lz4</depend>
<depend>libopencv-dev</depend>
<depend>yaml-cpp</depend>
<depend>libtiff-dev</depend>

<export>
<build_type>cmake</build_type>
Expand Down

0 comments on commit 4985959

Please sign in to comment.