Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我将 Kdevelop 用于一个简单的 C++ 项目。我知道 Kdevelop 使用 CMake 来构建项目,但我唯一知道的关于 CMake 的事情是,如果我.cpp在项目中添加一个新的源文件,我必须将它也添加到CMakeLists.txt.
.cpp
CMakeLists.txt
现在我正在尝试启用 thagcc编译器警告(即使用 编译g++ -Wall ...)。
gcc
g++ -Wall ...
Kdevelop 是否有编译器设置部分,或者我必须直接编辑Makefile或其他 CMake 设置文件?
Makefile
您可以通过将以下命令添加到 CMakeLists.txt 中来在 CMake 中添加编译器标志:
list( APPEND CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall")