kdevelop4 和 C++需要 cmake
我想使用 kdevelop4 进行 c++ 编程,但是当我尝试运行应用程序时,kdevelop4 需要 cmake 二进制文件!我该如何解决这个问题?
I want to use kdevelop4 for c++ programming but when I try to run the application kdevelop4 wants cmake binary file! How can I solve this problem?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看来你需要安装CMake。如果您使用的是 Linux 系统,
aptitude install cmake
(对于 Debian/ubuntu)或yum install cmake
(对于 Red Hat/Fedora)应该可以解决问题。在 Windows 上,您可能需要自己下载并安装 CMake。It sounds like you need to install CMake. If you are on a Linux system,
aptitude install cmake
(for Debian/ubuntu) oryum install cmake
(for Red Hat/Fedora) should do the trick. On Windows, you may need to download and install CMake yourself.