diff options
author | Tony Wasserka <neobrainx@gmail.com> | 2015-11-12 17:19:38 +0100 |
---|---|---|
committer | Tony Wasserka <neobrainx@gmail.com> | 2015-11-12 17:19:38 +0100 |
commit | 161be512fd63241554a9199b2da2e60bde7668ae (patch) | |
tree | 587bd23775f761c5638a4ba6242d3786d0b0193c | |
parent | Merge pull request #1122 from polaris-/gdbstub (diff) | |
parent | Enable RTTI on Windows builds. (diff) | |
download | yuzu-161be512fd63241554a9199b2da2e60bde7668ae.tar yuzu-161be512fd63241554a9199b2da2e60bde7668ae.tar.gz yuzu-161be512fd63241554a9199b2da2e60bde7668ae.tar.bz2 yuzu-161be512fd63241554a9199b2da2e60bde7668ae.tar.lz yuzu-161be512fd63241554a9199b2da2e60bde7668ae.tar.xz yuzu-161be512fd63241554a9199b2da2e60bde7668ae.tar.zst yuzu-161be512fd63241554a9199b2da2e60bde7668ae.zip |
-rw-r--r-- | CMakeLists.txt | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 604362e57..b8a981711 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -92,9 +92,8 @@ else() # /Zi - Output debugging information # /Zo - enahnced debug info for optimized builds set(CMAKE_C_FLAGS "/W3 /MP /Zi /Zo" CACHE STRING "" FORCE) - # /GR- - Disable RTTI # /EHsc - C++-only exception handling semantics - set(CMAKE_CXX_FLAGS "${CMAKE_C_FLAGS} /GR- /EHsc" CACHE STRING "" FORCE) + set(CMAKE_CXX_FLAGS "${CMAKE_C_FLAGS} /EHsc" CACHE STRING "" FORCE) # /MDd - Multi-threaded Debug Runtime DLL set(CMAKE_C_FLAGS_DEBUG "/Od /MDd" CACHE STRING "" FORCE) |