Hi,
I'm building a static library that needs to have two different target names.
I would like the debug version to be called "libraryd.lib" and the release version to be called "library.lib".
I have library.pro set up as:

TEMPLATE = lib
CONFIG += qt debug_and_release staticlib

CONFIG( debug, debug|release ) {
TARGET = libraryd
} else {
TARGET = library
}

Unfortunately, when I generate projects with "qmake -t vclib", it generates libraryd.vcproj.
If I try to force it with "qmake -t vclib -o libcgt.vcproj", when I open it in
Visual Studio, the project name is still "libcgtd".
Is there a way to force it to grab the default name (i.e. library.vcproj)?

Thanks