How to enable RTTI without modify leveldb/CMakeList.txt
Open
question
- Dominant language
- C++
- Stars
- 39.4k
- Forks
- 8.2k
- PR merge metrics
- No merged PRs in 30d
Description
I use cmake to build leveldb with my project,
```
add_subdirectory(leveldb)
target_link_libraries( ${APP_EXEC} ...leveldb )
```
It seems leveldb disable RTTI (-f no-rtti) by default, there is some other third party library in my project which requires RTTI, is there any way to enable RTTI without modify leveldb/CMakeList.txt?
Contributor guide
Assessment
This issue has not been assessed yet.