We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 02f0ca6 commit 8a0cbf2Copy full SHA for 8a0cbf2
scripts/windows/conda-toolchain.cmake
@@ -16,10 +16,10 @@ endif()
16
17
# Set the C++ compiler and tools.
18
if(NOT CMAKE_C_COMPILER)
19
- find_program(CMAKE_C_COMPILER NAMES clang-cl REQUIRED DOC "Clang C Compiler (MSVC Compatible)")
+ find_program(CMAKE_C_COMPILER NAMES clang REQUIRED DOC "Clang C Compiler (MSVC Compatible)")
20
endif()
21
if(NOT CMAKE_CXX_COMPILER)
22
- find_program(CMAKE_CXX_COMPILER NAMES clang-cl REQUIRED DOC "Clang C++ Compiler (MSVC Compatible)")
+ find_program(CMAKE_CXX_COMPILER NAMES clang REQUIRED DOC "Clang C++ Compiler (MSVC Compatible)")
23
24
if(NOT CMAKE_RC_COMPILER)
25
find_program(CMAKE_RC_COMPILER NAMES llvm-rc REQUIRED DOC "LLVM Resource Compiler")
0 commit comments