We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 75fb463 commit ed0ea67Copy full SHA for ed0ea67
cmake/Toolchains/llvm-clang-15-toolchain.cmake
@@ -2,10 +2,10 @@
2
# binary exists. Stops configuration if the required binary is missing.
3
#
4
# @param {string} VAR_NAME Variable name to set.
5
-# @param {string} BINARY_PATH Path to the cmake toolchain binary.
+# @param {string} BINARY_PATH Path to the CMake toolchain binary.
6
function(set_toolchain_binary_var VAR_NAME BINARY_PATH)
7
if(NOT EXISTS "${BINARY_PATH}")
8
- message(FATAL_ERROR "Required cmake toolchain binary not found: ${BINARY_PATH}")
+ message(FATAL_ERROR "Required CMake toolchain binary not found: ${BINARY_PATH}")
9
endif()
10
set(${VAR_NAME} "${BINARY_PATH}" PARENT_SCOPE)
11
endfunction()
0 commit comments