Cleanup: spelling in comments (make check_spelling_*)
This commit is contained in:
@@ -550,7 +550,7 @@ macro(TEST_SSE_SUPPORT
|
||||
if(CMAKE_COMPILER_IS_GNUCC OR (CMAKE_C_COMPILER_ID MATCHES "Clang"))
|
||||
set(${_sse42_flags} "-march=x86-64-v2")
|
||||
elseif(MSVC)
|
||||
# msvc has no specific build flags for SSE42, but when using intrinsics it will
|
||||
# MSVC has no specific build flags for SSE42, but when using intrinsics it will
|
||||
# generate the right instructions.
|
||||
set(${_sse42_flags} "")
|
||||
elseif(CMAKE_C_COMPILER_ID STREQUAL "Intel")
|
||||
|
||||
@@ -213,7 +213,7 @@ if(WITH_COMPILER_ASAN AND MSVC AND NOT MSVC_CLANG)
|
||||
endif()
|
||||
|
||||
|
||||
# C++ standards conformace
|
||||
# C++ standards conformance
|
||||
# /permissive- : Available from MSVC 15.5 (1912) and up. Enables standards-confirming compiler
|
||||
# behavior. Required until the project is marked as c++20.
|
||||
# /Zc:__cplusplus : Available from MSVC 15.7 (1914) and up. Ensures correct value of the __cplusplus
|
||||
@@ -403,7 +403,7 @@ set(ZLIB_INCLUDE_DIR ${LIBDIR}/zlib/include)
|
||||
set(ZLIB_LIBRARY ${LIBDIR}/zlib/lib/libz_st.lib)
|
||||
set(ZLIB_DIR ${LIBDIR}/zlib)
|
||||
|
||||
windows_find_package(ZLIB) # we want to find before finding things that depend on it like png
|
||||
windows_find_package(ZLIB) # We want to find before finding things that depend on it like PNG.
|
||||
windows_find_package(PNG)
|
||||
if(NOT PNG_FOUND)
|
||||
warn_hardcoded_paths(libpng)
|
||||
@@ -1351,8 +1351,8 @@ if(WITH_CYCLES AND (WITH_CYCLES_DEVICE_ONEAPI OR (WITH_CYCLES_EMBREE AND EMBREE_
|
||||
)
|
||||
endif()
|
||||
|
||||
# Add the msvc directory to the path so when building with ASAN enabled tools such as
|
||||
# msgfmt which run before the install phase can find the asan shared libraries.
|
||||
# Add the MSVC directory to the path so when building with ASAN enabled tools such as
|
||||
# `msgfmt` which run before the install phase can find the asan shared libraries.
|
||||
get_filename_component(_msvc_path ${CMAKE_C_COMPILER} DIRECTORY)
|
||||
# Environment variables to run precompiled executables that needed libraries.
|
||||
list(JOIN PLATFORM_BUNDLED_LIBRARY_DIRS ";" _library_paths)
|
||||
|
||||
Reference in New Issue
Block a user