Jeff
Jeff

Reputation: 1291

Make qmake not append .so

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

Answers (1)

Arnold Spence
Arnold Spence

Reputation: 22282

Try adding something like this to your .pro file:

QMAKE_EXTENSION_SHLIB = some_other_extension

Upvotes: 1

Related Questions