I create the target in the pro file with:
CONFIG += debug
LIBRARY_NAME = plotext
CONFIG(debug, debug|release) {
win32:LIBRARY_NAME = $$join(LIBRARY_NAME,,,d)
}
TARGET = $${LIBRARY_NAME}
message(Target: $$TARGET)
resulting in the output:
Project MESSAGE: Target: plotextd
But the file that is created has the name:
"plotextd0.dll"
so there is a 0 appended.
Why?
Matthias
_______________________________________________
Qt-creator mailing list
[email protected]
http://lists.trolltech.com/mailman/listinfo/qt-creator