Hi,
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!