summaryrefslogtreecommitdiffhomepage
path: root/cmake
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2016-08-29 15:53:27 +0200
committerStanislaw Halik <sthalik@misaki.pl>2016-08-29 15:54:00 +0200
commitf2bfea9c8e7d4da035a22eb46c3e5d564b69f984 (patch)
tree07a87fb6dfb2335564350008ef7b862dd8213eca /cmake
parenta3ba2fe5ff1ef6c030dd2e0f69da63de5cb8d8d5 (diff)
cmake/msvc: /EHscr generates epilogues, do /EHsc for no checking
Diffstat (limited to 'cmake')
-rw-r--r--cmake/msvc.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmake/msvc.cmake b/cmake/msvc.cmake
index 6c7021f8..9e3df668 100644
--- a/cmake/msvc.cmake
+++ b/cmake/msvc.cmake
@@ -12,7 +12,7 @@ SET(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY)
SET(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY)
# oldest CPU supported here is Northwood-based Pentium 4. -sh 20150811
-set(cc "/Ox /arch:SSE2 /EHscr /fp:fast /GS- /GF /GL /GR- /Gy /MT /Y- /Zi")
+set(cc "/Ox /arch:SSE2 /EHsc /fp:fast /GS- /GF /GL /GR- /Gy /MT /Zi")
set(warns_ "")