在gtkmm项目中使用c文件
我已将 c 文件添加到 gtkmm 项目目标中,但由于它是 c 文件,因此无法为其创建对象。
那么我应该怎么做才能将它集成到我的项目中。
I have added c files to gtkmm project target, but since it is c file it cannot make object for it.
So what should i do so that it can be integrated into my project.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是否存在链接错误?或者您可以与我们分享任何错误消息吗?
看看 http://www.parashift.com /c++-faq-lite/mixing-c-and-cpp.html
您是否对所有文件都使用 C++ 编译器?或者您是否使用不同的编译器编译 c 和 c++ 文件?
如果一切都失败了,将 c 文件的扩展名更改为 cpp 值得一试。
Is there a linking error? Or any error message you can share with us?
Have a look at http://www.parashift.com/c++-faq-lite/mixing-c-and-cpp.html
Are you using a C++ compiler for all files? Or are you compiling c and c++ files with different compilers?
If everything else fails, changing the extensions of c files to cpp is worth a try.