diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2018-10-08 17:49:40 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2018-10-08 15:53:37 +0000 |
commit | 9951bdd6ba93cac6accba7f3cf8a486e086316e3 (patch) | |
tree | 6d196bb705e45abb1212b4ea2fe4a12682ef0989 /cmake/msvc.cmake | |
parent | 9a881ac796dd46b4bdde7f48d8003160c2242c2d (diff) |
cmake/msvc: fix warning on preview
Diffstat (limited to 'cmake/msvc.cmake')
-rw-r--r-- | cmake/msvc.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmake/msvc.cmake b/cmake/msvc.cmake index 3ca56163..0f7b7fc6 100644 --- a/cmake/msvc.cmake +++ b/cmake/msvc.cmake @@ -13,7 +13,7 @@ SET(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY) set(cc "") # oldest CPU supported here is Northwood-based Pentium 4. -sh 20150811 -set(cc "${cc} -O2 -O2it -Oy- -Ob2 -fp:fast -GS- -GF -GL -Gw -Gy -Gm -Gs9999999") +set(cc "${cc} -O2 -O2it -Oy- -Ob2 -fp:fast -GS- -GF -GL -Gw -Gy -Gs9999999") set(cc "${cc} -FS -arch:SSE2 -D_HAS_EXCEPTIONS=0") #set(cc "${cc} -Qvec-report:1") |