Skip to content

Commit fe26a52

Browse files
author
christophe
committed
Fix macOS C.I.
1 parent 242233e commit fe26a52

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

CMakeLists.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,8 @@ elseif(GLM_ENABLE_SIMD_SSE2)
245245
endif()
246246
message(STATUS "GLM: SSE2 instruction set")
247247
elseif(GLM_ENABLE_SIMD_NEON)
248-
add_definitions(-DGLM_FORCE_NEON)
248+
add_definitions(-DGLM_FORCE_INTRINSICS)
249+
249250
message(STATUS "GLM: ARM NEON instruction set")
250251
endif()
251252

test/core/core_force_intrinsics.cpp

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,6 @@
1111
#include <ctime>
1212
#include <vector>
1313

14-
#ifdef GLM_FORCE_INTRINSICS
15-
#pragma message("GLM_FORCE_INTRINSICS is defined")
16-
#endif//
17-
1814
static int test_vec4_ctor()
1915
{
2016
int Error = 0;

0 commit comments

Comments
 (0)