I'm trying to compile and run a C code that is using libsndfile
library for sound files processing.
I have added the header file using this path:
project's Properties (in C/C++ -> General -> Additional Include Directories)
Also i have linked the library using this path:
Project Properties -> Linker -> Input -> Additional Dependencies.
But while debugging, i get the following errors:
1>sil.obj : warning LNK4075: ignoring '/EDITANDCONTINUE' due to '/INCREMENTAL:NO' specification
1>sil.obj : error LNK2019: unresolved external symbol _sf_write_sync referenced in function _main
1>sil.obj : error LNK2019: unresolved external symbol _sf_write_double referenced in function _main
1>sil.obj : error LNK2019: unresolved external symbol _sf_close referenced in function _main
1>sil.obj : error LNK2019: unresolved external symbol _sf_read_double referenced in function _main
1>sil.obj : error LNK2019: unresolved external symbol _sf_open referenced in function _main
1>c:\users\anam\documents\visual studio 2010\Projects\silence\Debug\silence.exe : fatal error LNK1120: 5 unresolved externals
Can someone please identify the problem here? I'm new at using Visual Studio and I really need help!