| 88 | === Linking Options === |
| 89 | |
| 90 | By default, PJMEDIA will automatically link with Intel IPP libraries when Visual Studio is used. This is done by using using {{{#pragma comment(lib)}}} constructs in the source code. This is convenient, however it will only link with the stub libraries and the Intel IPP DLL's will be required when distributing the application. |
| 91 | |
| 92 | If application wants to link with the different types of the Intel IPP libraries (for example, the static libraries), it must set {{{PJMEDIA_AUTO_LINK_IPP_LIBS}}} option to zero and specify the Intel IPP libraries in the application's input library specification manually. |
| 93 | |
| 94 | Example: |
| 95 | {{{ |
| 96 | #define PJMEDIA_AUTO_LINK_IPP_LIBS 0 |
| 97 | }}} |
| 98 | |
| 99 | |
| 100 | |