尝试将 Visual Studio 解决方案移植到 Linux,有什么办法吗?递归整个目录?
尝试将 Visual Studio 解决方案移植到 Linux,是否可以递归地 g++ 整个目录?
有很多文件需要编译,在制作一个干净的 makefile 之前,我想简单地编译一次,看看它会给出什么......
Trying to port Visual Studio solution to Linux, is there anyway to g++ a whole directory recursively?
There are lots of files to compile and before making a clean makefile I'd like to simply compile once and see what it gives...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以尝试使用如下所示的 find:
创建通配符 make 文件来为您进行编译和链接也很容易:
You can try using find like below:
It's also easy to create a wildcard make file do to the compile and linking for you: