I\'m trying to build a dynamic library on Linux using qmake. Here is my .pro file:
TEMPLATE = lib
TARGET = sqxUiBase
QT += core gui
CONFIG += dll
INCLUDEP
After looking at the qmake source I found CONFIG += unversioned_libname
for nix and CONFIG += skip_target_version_ext
for windows.
What you are looking for is making a plugin
.
Add CONFIG += plugin
to your project file, and qmake will generate a Makefile that builds a libFoo.so
file, without the numbered links