diff options
author | Zephyron <zephyron@citron-emu.org> | 2025-01-02 16:39:58 +1000 |
---|---|---|
committer | Zephyron <zephyron@citron-emu.org> | 2025-01-02 16:39:58 +1000 |
commit | 822152c5386a05cf71181e41873e6020ad3604d2 (patch) | |
tree | 781807bdf376be9c34523ce89f10d18da42e91a5 | |
parent | 733d648b5a5f334dc574cc187d6d3ec2477fcc28 (diff) |
fix(CMake): Remove /DEBUG Flag From Release Builds
-rw-r--r-- | src/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 5aeada472..0effad625 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -107,7 +107,7 @@ if (MSVC) add_compile_options("$<$<CONFIG:Release>:/GS->") set(CMAKE_EXE_LINKER_FLAGS_DEBUG "/DEBUG /MANIFEST:NO" CACHE STRING "" FORCE) - set(CMAKE_EXE_LINKER_FLAGS_RELEASE "/DEBUG /MANIFEST:NO /INCREMENTAL:NO /OPT:REF,ICF" CACHE STRING "" FORCE) + set(CMAKE_EXE_LINKER_FLAGS_RELEASE "/MANIFEST:NO /INCREMENTAL:NO /OPT:REF,ICF" CACHE STRING "" FORCE) else() add_compile_options( -fwrapv |