Skip to content

Commit ed0ea67

Browse files
Apply suggestions from code review
Co-authored-by: kirkrodrigues <[email protected]>
1 parent 75fb463 commit ed0ea67

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cmake/Toolchains/llvm-clang-15-toolchain.cmake

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
# binary exists. Stops configuration if the required binary is missing.
33
#
44
# @param {string} VAR_NAME Variable name to set.
5-
# @param {string} BINARY_PATH Path to the cmake toolchain binary.
5+
# @param {string} BINARY_PATH Path to the CMake toolchain binary.
66
function(set_toolchain_binary_var VAR_NAME BINARY_PATH)
77
if(NOT EXISTS "${BINARY_PATH}")
8-
message(FATAL_ERROR "Required cmake toolchain binary not found: ${BINARY_PATH}")
8+
message(FATAL_ERROR "Required CMake toolchain binary not found: ${BINARY_PATH}")
99
endif()
1010
set(${VAR_NAME} "${BINARY_PATH}" PARENT_SCOPE)
1111
endfunction()

0 commit comments

Comments
 (0)