mirror of
https://github.com/reactos/reactos.git
synced 2025-04-06 05:34:22 +00:00
[CMAKE] msvc.cmake: Remove 2 now redundant '/GF' (#1239)
Addendum to 5e673f3
.
CORE-14373
This commit is contained in:
parent
8bde4de2d6
commit
237110604b
1 changed files with 2 additions and 2 deletions
|
@ -4,7 +4,7 @@ if(CMAKE_BUILD_TYPE STREQUAL "Debug")
|
|||
# no optimization
|
||||
add_compile_flags("/Ob0 /Od")
|
||||
elseif(CMAKE_BUILD_TYPE STREQUAL "Release")
|
||||
add_compile_flags("/Ox /Ob2 /Ot /Oy /GT /GF")
|
||||
add_compile_flags("/Ox /Ob2 /Ot /Oy /GT")
|
||||
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} /OPT:REF /OPT:ICF")
|
||||
elseif(OPTIMIZE STREQUAL "1")
|
||||
add_compile_flags("/O1")
|
||||
|
@ -15,7 +15,7 @@ elseif(OPTIMIZE STREQUAL "3")
|
|||
elseif(OPTIMIZE STREQUAL "4")
|
||||
add_compile_flags("/Os /Ox /GS-")
|
||||
elseif(OPTIMIZE STREQUAL "5")
|
||||
add_compile_flags("/GF /Gy /Ob2 /Os /Ox /GS-")
|
||||
add_compile_flags("/Gy /Ob2 /Os /Ox /GS-")
|
||||
endif()
|
||||
|
||||
# Always use string pooling: this helps reducing the binaries size since a lot
|
||||
|
|
Loading…
Reference in a new issue