I'm trying out qmake and have something simple running so far. I have a server process in my server.pro which contains the following.
Qt Code:
  1. INCLUDEPATH += ./includes
  2. LIBS += -L/usr/lib64/boost-1_41 -lboost_program_options
  3.  
  4. CONFIG +=
  5. HEADERS += server.h
  6. SOURCES += main.cpp
  7. TARGET = server
To copy to clipboard, switch view to plain text mode 

I have a few other *.cpp files that I need to build as a shared library that this server will load during run-time. Can anyone help out w/ what's needed to add the building of multiple/separate shared libraries. I would like for these libraries to be placed in their own directories underneath a 'libs' directory.

Any help much appreciated.