Hello,
I'm using Visual Studio 2013 and the Intel IPP 8.2.
I have some Auxiliary Functions I build upon Intel IPP for image manipulation in C++ style by overloading some operators and defining function which are composition of many Intel IPP functions.
Now, I want to build a library of that functions I created and I want this library to be "Self Defined".
Namely, on my future projects I want to link to that library (And only that) and be able to use my functions (Which relies on Intel IPP).
Basically, it is something like the question here:
http://stackoverflow.com/questions/4736877/how-to-link-boost-in-a-depend...
Which refers me here:
http://stackoverflow.com/questions/5445023/c-can-you-build-one-static-li...
Just to explain things, in Project 1 I build a library of function I created which relies on Intel IPP.
I use the static libraries and try to create a static lib out of it.
On Project 2 I use the functions I created.
I only link the LIB file I created from Project 1.
Yet when I try to compile Project 2 I get the following error:
LINK : fatal error LNK1104: cannot open file 'C:\Program Files (x86)\Intel\Composer XE 2015\ipp\include\ippi.h/../../lib/intel64/ippimt.lib'
I prefer the library to be static, but if there's no choice, a dynamic library would be OK as well.