KDevelop 中的项目文件

发布于 2024-10-14 23:37:26 字数 163 浏览 3 评论 0原文

我正在尝试使用 KDevelop 编写一个基于 cmake 的简单应用程序。 KDevelop 创建了两个 myProject.kdev4 项目文件:一个位于项目文件夹中,另一个位于 .kdev4 隐藏子文件夹中。两者均非空。我应该检查哪些?如何让 kdevelop 仅使用一个项目文件(最好不使用隐藏文件夹)?

I am trying to use KDevelop to write a cmake based simple application. KDevelop created two myProject.kdev4 project files: one in the project folder and one in .kdev4 hidden subfolder. Both are non-empty. Which ones should I check in? How can I make kdevelop use just one project file (and preferably not use hidden folders)?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

清泪尽 2024-10-21 23:37:26

.kdev4 文件用于 kdevelop 特定信息(它主要只是告诉 KDevelop 使用 CMake 项目管理器)。该文件夹包含用户特定的配置(如果您熟悉 Visual Studio,它就像 .user 文件)。

通常只需要 CMakeLists.txt 文件,因为它们应该具有所有相关的通用数据。您可以放入 .kdev4 文件,这样您就不需要通过另一台计算机上的 CMakeLists.txt“导入”项目。但 .kdev4 文件夹应保留在本地计算机中,因为您不想混合用户的配置。

The .kdev4 file is used for kdevelop specific information (It mainly only tells KDevelop to use the CMake project manager). The folder includes user specific configuration (If you are familiar with Visual Studio, it is like the .user files).

Usually only the CMakeLists.txt files are needed as they should have all the relevant generic data. You can throw in the .kdev4 file so that you don't need to 'import' the project through the CMakeLists.txt on another machine. But the .kdev4 folder should stay in your local machine, as you don't want to mix user's configurations.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文