Skip to content

Commit ec84e9c

Browse files
author
Carsten Griwodz
committed
[cmake] fix camelCase
1 parent 717f108 commit ec84e9c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ if(NOT DEFINED PopSift_CUDA_CC_LIST)
9292
include(ChooseCudaCC)
9393
set(PopSift_MIN_CC 30)
9494
set(PopSift_MIN_CUDA_VERSION 7.0)
95-
ChooseCudaCC(PopSift_CUDA_CC_LIST_BASIC ${PopSift_MIN_CC} ${PopSift_MIN_CUDA_VERSION})
95+
chooseCudaCC(PopSift_CUDA_CC_LIST_BASIC ${PopSift_MIN_CC} ${PopSift_MIN_CUDA_VERSION})
9696
set(PopSift_CUDA_CC_LIST ${PopSift_CUDA_CC_LIST_BASIC} CACHE STRING "CUDA CC versions to compile")
9797
endif()
9898
message(STATUS "Compiling for CUDA CCs ${PopSift_CUDA_CC_LIST}")
@@ -208,4 +208,4 @@ message(STATUS "Additional warning for CUDA nvcc: " ${PopSift_NVCC_WARNINGS})
208208
message(STATUS "Compiling for CUDA CCs: ${PopSift_CUDA_CC_LIST}")
209209
message(STATUS "Install path: " ${CMAKE_INSTALL_PREFIX})
210210
message("\n******************************************")
211-
message("\n")
211+
message("\n")

cmake/ChooseCudaCC.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# We assume that MINCC default to 20
77
# We assume that MINCUDAVERSION defaults to 7.0
88
#
9-
function(ChooseCudaCC RESULT_NAME MINCC MINCUDAVERSION)
9+
function(chooseCudaCC RESULT_NAME MINCC MINCUDAVERSION)
1010
if(NOT DEFINED MINCC)
1111
set(MINCC 20)
1212
endif()

0 commit comments

Comments
 (0)