尝试将 Visual Studio 解决方案移植到 Linux,有什么办法吗?递归整个目录?

发布于 2024-10-15 01:30:11 字数 120 浏览 2 评论 0原文

尝试将 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 技术交流群。

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

发布评论

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

评论(1

抹茶夏天i‖ 2024-10-22 01:30:11

您可以尝试使用如下所示的 find:

find . -name *.cpp -exec g++ -c {}\;

创建通配符 make 文件来为您进行编译和链接也很容易:

CC = g++
COMPILE = $(CC) -c
OBJF := $(patsubst %.cpp,%.o,$(wildcard *.cpp))

all: prog

prog: $(OBJF)
      $(CC) -o prog $(OBJF)

%.o: %.cpp
      $(COMPILE) -o $@ 
lt;

You can try using find like below:

find . -name *.cpp -exec g++ -c {}\;

It's also easy to create a wildcard make file do to the compile and linking for you:

CC = g++
COMPILE = $(CC) -c
OBJF := $(patsubst %.cpp,%.o,$(wildcard *.cpp))

all: prog

prog: $(OBJF)
      $(CC) -o prog $(OBJF)

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