是否有终端工具可以自动为 Vala 项目生成 autoconf/automake makefile?
我正在尝试创建一个 Vala 项目,以了解我如何使用该语言作为 Mono 的可能替代品进行开发。 我认为 automake 的东西可以用来生成一个包含所有必要文件的项目模板(没有我的 .vala 代码)。 任何帮助,将不胜感激。
I am trying to create a Vala project to see how i like developing with the language as a possible replacement for Mono. I think that the automake stuff can be used to generate a project template with all the necessary files (sans my .vala code).
Any help would be appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
有一个名为 Sampala 的示例框架 Vala 项目。 您可以克隆它并从那里开始。
There's a sample skeleton Vala project called Sampala. You can clone it and start from there.
Automake 最近刚刚添加了对 Vala 的支持。 要了解更多信息,请查看 Automake 的注释 。
Automake just recently added support for Vala. To find out more about it check out Automake's notes.
Vala Toys for GEdit 包含一个名为 vala-gen-project 的工具>。 试一试!
Vala Toys for GEdit includes a tool called vala-gen-project. Give it a try!
下载 Vala 编译器的源代码并查看每个子目录中的“configure.ac”和“Makefile.am”。 Vala 本身就是如何构建 Vala 项目的典型示例。
Download the source code for the Vala compiler and look at 'configure.ac' and 'Makefile.am' in each subdirectory. Vala itself is the canonical example of how to build a Vala project.