简体   繁体   中英

CMake: suppress ALL warnings

I am trying to do something extremely simple:

I have to work on a C++ project that raises a lot of compilation warnings. Temporarily, I want to only see errors when I run make. What do I need to add to my CMakeLists.txt to make that happen? The simpler, the better.

It turns out the answer was to simply add the line

add_definitions(-w)

To CMakeLists.txt

It took me a lot longer than it should have to find this simple answer.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM