如何使用 qmake 创建 vcproj,使其过滤器反映目录结构?

发布于 2024-07-19 07:34:59 字数 413 浏览 3 评论 0原文

我使用 qmake (Qt 4.5.1) 创建 vcproj 文件。 我想为输出 vcproj 创建自定义过滤器,这样不是每个 *.h 文件最终都在“头文件”过滤器中,*.cpp 在“源文件”等中。

例如,包含这些文件的项目

foo\foo.h
foo\foo.cpp
bar\bar.h
bar\bar.cpp

应该有vcproj 文件,

foo
   foo.h
   foo.cpp
bar
   bar.h
   bar.cpp

而不是

Header Files
   bar.h
   bar.cpp
Source Files
   bar.cpp
   foo.cpp

谢谢!

I use qmake (Qt 4.5.1) to create my vcproj files. I would like to create customized filters for the output vcproj, such that not every *.h file ends up in the "Header Files" filter, *.cpp in "Source Files" etc.

For example, a project containing the files

foo\foo.h
foo\foo.cpp
bar\bar.h
bar\bar.cpp

should have a vcproj file with

foo
   foo.h
   foo.cpp
bar
   bar.h
   bar.cpp

instead of

Header Files
   bar.h
   bar.cpp
Source Files
   bar.cpp
   foo.cpp

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

无人问我粥可暖 2024-07-26 07:34:59

如果您使用 CONFIG -= flat 运行 qmake,您将得到以下项目结构:

Header Files
    foo
        foo.h
    bar
        bar.h
Source Files
    foo
        foo.cpp
    bar
        bar.cpp

这一直困扰着我,这就是为什么我要编写一个修复程序适用于 Xcode 项目的 Mac。 最终我可能会为 VS 编写一个(这更容易,因为项目文件是一个 XML 文档)。

如果您严格使用 Visual Studio 在 Windows 上编写软件,我建议使用 Visual Studio 集成插件,因为它将自动生成编译 Qt 文件所需的 UIC 和 MOC 步骤。

If you run qmake with CONFIG -= flat, you'll get the following project structure:

Header Files
    foo
        foo.h
    bar
        bar.h
Source Files
    foo
        foo.cpp
    bar
        bar.cpp

This has always bothered me, which is why I'm writing a fix on the Mac for Xcode projects. Eventually I'll probably write one for VS (which is easier since the project file is an XML document).

If you're writing software strictly on Windows using Visual Studio, I would recommend using the Visual Studio Integration Plugin as it will automatically generate the UIC and MOC steps needed to compile Qt files.

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