h files and *.lib file from another developer.
I have built a C++/CLI project and I want to create a C# wrapper for two functions
I'm getting this error
error LNK1104: cannot open file 'libmmt.lib'
I understand the he is using Intel Compiler and I know he uses IPP functions.<Br>
from here:<br>
https://software.intel.com/en-us/articles/libraries-provided-by-intelr-c...
I understand that he also uses Multi-threaded
static library (/MT) version of math library.
I have Intel parallel studio installed. can you please help me understand how to configure my C++/CLI project?
I have added
$(ICPP_COMPILER15)compiler\lib\intel64 into Additional Library Directories inside Linker -> General and now I have many more errors:
error LNK2019: unresolved external symbol ippsSum_32f referenced in function ia_cp_robustMest
error LNK2019: unresolved external symbol ippsSubC_32f referenced in function ia_cp_estimaSigmaRob
and so on...