From 8fb7916a0d0cb007a4c3a4e6a31af58765268ca3 Mon Sep 17 00:00:00 2001 From: sanine Date: Sat, 16 Apr 2022 11:55:54 -0500 Subject: delete src/mesh/assimp-master --- .../contrib/draco/cmake/draco_cpu_detection.cmake | 28 ---------------------- 1 file changed, 28 deletions(-) delete mode 100644 src/mesh/assimp-master/contrib/draco/cmake/draco_cpu_detection.cmake (limited to 'src/mesh/assimp-master/contrib/draco/cmake/draco_cpu_detection.cmake') diff --git a/src/mesh/assimp-master/contrib/draco/cmake/draco_cpu_detection.cmake b/src/mesh/assimp-master/contrib/draco/cmake/draco_cpu_detection.cmake deleted file mode 100644 index 96e4a28..0000000 --- a/src/mesh/assimp-master/contrib/draco/cmake/draco_cpu_detection.cmake +++ /dev/null @@ -1,28 +0,0 @@ -if(DRACO_CMAKE_DRACO_CPU_DETECTION_CMAKE_) - return() -endif() # DRACO_CMAKE_DRACO_CPU_DETECTION_CMAKE_ -set(DRACO_CMAKE_DRACO_CPU_DETECTION_CMAKE_ 1) - -# Detect optimizations available for the current target CPU. -macro(draco_optimization_detect) - if(DRACO_ENABLE_OPTIMIZATIONS) - string(TOLOWER "${CMAKE_SYSTEM_PROCESSOR}" cpu_lowercase) - if(cpu_lowercase MATCHES "^arm|^aarch64") - set(draco_have_neon ON) - elseif(cpu_lowercase MATCHES "^x86|amd64") - set(draco_have_sse4 ON) - endif() - endif() - - if(draco_have_neon AND DRACO_ENABLE_NEON) - list(APPEND draco_defines "DRACO_ENABLE_NEON=1") - else() - list(APPEND draco_defines "DRACO_ENABLE_NEON=0") - endif() - - if(draco_have_sse4 AND DRACO_ENABLE_SSE4_1) - list(APPEND draco_defines "DRACO_ENABLE_SSE4_1=1") - else() - list(APPEND draco_defines "DRACO_ENABLE_SSE4_1=0") - endif() -endmacro() -- cgit v1.2.1