Silence cmake endif mismatch warning (#5005)

A careless endif in cmake to enable catching a particular compiler
warning introduced an irritating cmake warning. The corrects the
mismatched endif
This commit is contained in:
Greg Roth 2023-02-09 01:08:14 -07:00 коммит произвёл GitHub
Родитель 7c4927aa64
Коммит 8d5efcae84
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

2
external/CMakeLists.txt поставляемый
Просмотреть файл

@ -43,7 +43,7 @@ if (${ENABLE_SPIRV_CODEGEN})
# This add_compile_options() will only affect the current directory and its subdirectories.
if(CMAKE_CXX_COMPILER_ID MATCHES "Clang")
add_compile_options(-Wno-implicit-fallthrough)
endif(NOT WIN32)
endif()
# We only need the library from SPIRV-Tools.
set(SPIRV_SKIP_EXECUTABLES ON CACHE BOOL "Skip building SPIRV-Tools executables")
if (NOT HLSL_ENABLE_DEBUG_ITERATORS)