*******************************************************************************
* Library Link Information
*******************************************************************************
** Static Link:

    -> Dependencies: 
        -> libfipcore.a
            -> libexodeviceaccess.a
            -> libexoerrors.a
            -> libxml2.a
                -> libm.so
                -> libsocket.so

    -> Makefile adds
        static link:
        LIBS += -L/path/to/your/lib/ -lfipcore -lexodeviceaccess -lexoerrors 
                    -lxml2

        dynamic link:
        LIBS += -L/path/to/qnx650/target/qnx6/armle-v7/lib/ -lm 
                    -lsocket

** Dynamic Link:

    -> Dependencies: 
        -> libfipcore.so (other dependencies are integrated in it)

    -> Makefile adds
        LIBS += -L/path/to/your/lib/ -lfipcore
