I'm using Kdevelop for a simple C++ project. I know that Kdevelop uses CMake to build the project, but the only thing that I known about CMake is that if I add a new .cpp
source file in my project, I have to add it also in CMakeLists.txt
.
Now I'm trying to enable tha gcc
compiler warnings (i.e. compiling with g++ -Wall ...
).
Does Kdevelop have a compiler settings section, or I have to edit directly the Makefile
or another CMake settings file?