Hi t0m, I was able to link it, but I do not notice any improvement in performance compared with native juce.
The External libs to link in projucer are:
mkl_intel_c.lib
mkl_sequential.lib
mkl_core.lib
I don’t know if MKL is working now, (it’s activated from dsp_module, and the compiler and linker do not throw any errors)
I guess you didn’t get performance improvements as you choose the wrong CPU architecture. Bascially all modern conventional CPU use 64 bit architecture, so the right commands to add the MKL frameworks are:
If you want further performance increase by parallelizing the FFT, you have to replace mkl_sequential.lib with mkl_tbb_thread.lib and also libiomp5md.lib (which is another folder, so the \compiler\lib\intel64_win folder has to be added too to the extra library search paths).