如何使用 qmake 创建 vcproj,使其过滤器反映目录结构?
我使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用
CONFIG -= flat
运行 qmake,您将得到以下项目结构:这一直困扰着我,这就是为什么我要编写一个修复程序适用于 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: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.