EDE子项目混乱

发布于 2024-09-06 07:04:54 字数 277 浏览 4 评论 0原文

我一直在尝试让 EDE 中的子项目正常工作,但我不太了解,也找不到任何好的文档。对于以下树,项目配置必须是什么样子:

Test

  • Project.el
  • bin
    • 测试
  • 源代码
    • 项目.el
    • main.cpp
    • 类.cpp
  • inc
    • 项目.el
    • 类.h

I've been trying to get subprojects in EDE to work, but I don't understand much and I can't find any good documentation. What would the project configurations have to look like for the following tree:

Test

  • Project.el
  • bin
    • test
  • src
    • Project.el
    • main.cpp
    • class.cpp
  • inc
    • Project.el
    • class.h

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

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

发布评论

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

评论(1

压抑⊿情绪 2024-09-13 07:04:54

要创建这样的项目,首先使用以下命令创建顶级项目:

M-x ede-new RET

并将其填写为基于 Automake 或 Makefile 的项目。 (两者都可以。)然后对于每个子目录,以相同的项目样式再次使用 ede-new 。这些项目将在顶级项目下链接在一起。然后,您可以用来

M-x customize-project RET

编辑项目所需的任何功能。如果您使用 dired,则可以标记文件并使用“项目”菜单将这些文件添加到某个目标,或者创建新目标将它们添加到。您不需要知道 Project.ede 文件中的内容即可执行此操作。事实上,Project.ede 文件只是一些 Emacs Lisp 代码,用于创建代表您正在处理的项目的对象。

To make a project like that, first create the toplevel project with:

M-x ede-new RET

and fill it in as an Automake or Makefile based project. (either is fine.) Then for each sub-directory, use ede-new again with the same project style. These projects will get linked together under the top-level project. You then use

M-x customize-project RET

to edit any features you need for the project. If you use dired, you can mark files and use the Project menu to add those files to some target, or create new targets to add them to. You don't need to know what is in the Project.ede files to do that. As it happens, the Project.ede file is just some Emacs Lisp code that creates the objects that represent the project you are working in.

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