如何配置cmake编译informix *.ec文件?
我刚刚找到了 cmake,我想用它为一个使用 esql 编译器的小项目创建 make 文件。
I'm just found cmake and I want to use it to create make files for a little project that uses the esql compiler.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我还没有使用过
cmake
(它在我需要查看的事情清单上 - 大约在一些备用学费可用的时候),但是......我确实有几套用于将 ESQL/C 编译为常规
make
目标代码等的规则。您可以在 SQLCMD 包中的 IIUG Software Archive 中在线找到一组这些规则。 或者您可以直接与我联系,详细讨论细节(和/或
cmake
内容和常规make
内容之间的区别)。 您还可以在 SQLCMD 包 - 文件acinformix.m4
中找到与 Informix 相关的autoconf
宏。I've not used
cmake
yet (it is on my list of things that I need to look at - round about the time some spare tuits become available), but...I do have several sets of rules for compiling ESQL/C to object code etc for regular
make
.You can find one set of those rules online at the IIUG Software Archive in the SQLCMD package. Or you can contact me directly to discuss the niceties in detail (and/or the differences between
cmake
stuff and regularmake
stuff). You can also find Informix-relatedautoconf
macros in the SQLCMD package - fileacinformix.m4
.您可能需要使用 cmake ADD_CUSTOM_COMMAND 命令创建使用 esql 编译器编译每个源文件的规则。
You will probably need to use the cmake ADD_CUSTOM_COMMAND command to create the rule for compiling each source file with the esql compiler.