aboutsummaryrefslogtreecommitdiff
path: root/cmake/compiler/msvc/settings.cmake
diff options
context:
space:
mode:
authorclick <click@gonnamakeyou.com>2012-03-27 02:27:12 +0200
committerclick <click@gonnamakeyou.com>2012-03-27 02:27:12 +0200
commit6afaed4a02ff5e29510a9e1afffea803e02f3d69 (patch)
treeba681f09b45e1a30f2221d01a3010250bed0cb7e /cmake/compiler/msvc/settings.cmake
parenta92820b51c791595676805396a599fa345d58db2 (diff)
Core: Remove the MersenneTwiser-library (SFMT is now considered stable enough for full deployment)
Diffstat (limited to 'cmake/compiler/msvc/settings.cmake')
-rw-r--r--cmake/compiler/msvc/settings.cmake7
1 files changed, 2 insertions, 5 deletions
diff --git a/cmake/compiler/msvc/settings.cmake b/cmake/compiler/msvc/settings.cmake
index eb55dc66c50..3d8fe43b6aa 100644
--- a/cmake/compiler/msvc/settings.cmake
+++ b/cmake/compiler/msvc/settings.cmake
@@ -20,11 +20,8 @@ else()
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} /LARGEADDRESSAWARE")
message(STATUS "MSVC: Enabled large address awareness")
- # Test if we need SSE2-support
- if(USE_SFMT)
- add_definitions(/arch:SSE2)
- message(STATUS "MSVC: Enabled SSE2 support")
- endif()
+ add_definitions(/arch:SSE2)
+ message(STATUS "MSVC: Enabled SSE2 support")
endif()
# Set build-directive (used in core to tell which buildtype we used)