diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2022-11-16 15:11:22 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2022-11-16 15:11:22 +0100 |
commit | 577445e28b83f5b7aa7ae8fe4853b1e6a5b0e4d4 (patch) | |
tree | a254dd218af9ac2ddf20714d0ca65e306b139fa0 | |
parent | d50706c71740dccfb461b12740a69b13020ab88a (diff) |
cmake: reenable rtti
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 840b2371..736d992d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -154,11 +154,13 @@ if(NOT APPLE AND NOT WIN32) add_compile_options(-fno-plt) endif() +if(FALSE) if(MSVC) add_compile_options(-GR-) else() add_compile_options(-fno-rtti) endif() +endif() fm_run_hook(fm-userconfig-src) |