When making a DLL, qmake seems to take the major number of the VERSION parameter and add it to the TARGET name, so that what starts as:
TARGET = mytarget
VERSION = 1.0.0
...
becomes
mytarget1.dll
How can I disable this behavior, but still keep the file version feature? If I remove the version parameter, the file naming problem goes away, but so do the file versions.
Colby
Bookmarks