Reputation: 1291
Is there some way to modify qmake project files (*.pro) such that qmake doesn't append .so when building shared library files? I know it happens because of the target file type...
Upvotes: 1
Views: 135
Reputation: 22282
Try adding something like this to your .pro file:
QMAKE_EXTENSION_SHLIB = some_other_extension
Upvotes: 1