Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrecht Van Lommel <brecht@blender.org>2021-03-01 21:15:29 +0300
committerBrecht Van Lommel <brecht@blender.org>2021-03-01 21:43:54 +0300
commitf39143bc2ed4eb33bb85a3d923cb457384141bf8 (patch)
treefba90399a3c9fe57ed00ce048ba63f45ea65838a /build_files/cmake/platform/platform_apple.cmake
parent77bc5510a90bbfcc7adaed6a0e4c4768cb236239 (diff)
CMake: reduce Neon related output on Intel platforms
* Only try to find sse2neon if Neon detected * Only run Neon support test once
Diffstat (limited to 'build_files/cmake/platform/platform_apple.cmake')
-rw-r--r--build_files/cmake/platform/platform_apple.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/build_files/cmake/platform/platform_apple.cmake b/build_files/cmake/platform/platform_apple.cmake
index 12a7a6c504f..be9261798f4 100644
--- a/build_files/cmake/platform/platform_apple.cmake
+++ b/build_files/cmake/platform/platform_apple.cmake
@@ -324,7 +324,7 @@ if(WITH_NANOVDB)
find_package(NanoVDB)
endif()
-if(WITH_CPU_SIMD)
+if(WITH_CPU_SIMD AND SUPPORT_NEON_BUILD)
find_package(sse2neon)
endif()