aboutsummaryrefslogtreecommitdiff
path: root/cmake/OptimizeForArchitecture.cmake
diff options
context:
space:
mode:
authorclick <none@none>2010-08-27 19:38:28 +0200
committerclick <none@none>2010-08-27 19:38:28 +0200
commit3aa117c9b0c9dd4cfaa8dd38cb542113c26b6090 (patch)
tree17959e97d7f835f9488f220b60382c917642b1fc /cmake/OptimizeForArchitecture.cmake
parent36640c263ab7f41a063805afcf011af710a5e3ff (diff)
Buildsystem: Make SSE-variables "advanced" so that they don't confuse people more than needed (will not show unless 'advanced' is ticked in the GUI)
--HG-- branch : trunk
Diffstat (limited to 'cmake/OptimizeForArchitecture.cmake')
-rw-r--r--cmake/OptimizeForArchitecture.cmake4
1 files changed, 3 insertions, 1 deletions
diff --git a/cmake/OptimizeForArchitecture.cmake b/cmake/OptimizeForArchitecture.cmake
index d61b07ed6fd..4f10270b97d 100644
--- a/cmake/OptimizeForArchitecture.cmake
+++ b/cmake/OptimizeForArchitecture.cmake
@@ -218,5 +218,7 @@ macro(OptimizeForArchitecture)
endif(NOT GCC_4_5_2)
endif(GCC_4_5_0)
endif(CMAKE_COMPILER_IS_GNUCXX)
- endif(CMAKE_C_COMPILER MATCHES "cl(.exe)?$")
+ endif(CMAKE_C_COMPILER MATCHES "cl(.exe)?$")
+
+ mark_as_advanced(USE_SSE2 USE_SSE3 USE_SSE4a USE_SSSE3)
endmacro(OptimizeForArchitecture)