From 6bb9bdc8cedcd371daae31904c85c30288f93c20 Mon Sep 17 00:00:00 2001 From: Christophe Riccio Date: Sat, 19 Oct 2013 12:13:38 +0200 Subject: [PATCH] Renamed CMake SIMD options --- CMakeLists.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 469a7358..7f0c6571 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -49,10 +49,10 @@ if(("${CMAKE_CXX_COMPILER_ID}" STREQUAL "MSVC") OR (("${CMAKE_CXX_COMPILER_ID}" endif() endif() -option(GLM_TEST_ENABLE_SSE2 "Enable SSE2 optimizations" OFF) -option(GLM_TEST_ENABLE_SSE3 "Enable SSE3 optimizations" OFF) -option(GLM_TEST_ENABLE_AVX "Enable AVX optimizations" OFF) -option(GLM_TEST_ENABLE_AVX2 "Enable AVX2 optimizations" OFF) +option(GLM_TEST_ENABLE_SIMD_SSE2 "Enable SSE2 optimizations" OFF) +option(GLM_TEST_ENABLE_SIMD_SSE3 "Enable SSE3 optimizations" OFF) +option(GLM_TEST_ENABLE_SIMD_AVX "Enable AVX optimizations" OFF) +option(GLM_TEST_ENABLE_SIMD_AVX2 "Enable AVX2 optimizations" OFF) option(GLM_TEST_FORCE_PURE "Force 'pure' instructions" OFF) if(GLM_TEST_FORCE_PURE)