Unresolved External LNK2019

When I build I’m getting a long list of unresolved externals, I’ve implemented the dependencies as specified to but I’m stuck with this issue. Any ideas? Thanks

What version of FMOD are you using, and do the examples run correctly?
LNK2019 usually means the libs aren’t linked. Assuming you have created an FMOD project from scratch, have you linked the libs in Visual Studio?

  1. In the top menu, go to “Project>Properties”
  2. Add fmod_vc.lib in “Configuration Properties>Linker>Input>Additional Dependencies”
  3. Add the path to the fmod libs (e.g C:\Program Files (x86)\FMOD SoundSystem\FMOD Studio API Windows 2.02.04\api\core\lib\x64) in “Configuration Properties>Linker>General>Additional Library Directories”
  4. Ensure the dll exists in the built directory, either by copying it across yourself or adding xcopy /y /d "{Path to your fmod libs}\lib\x64\fmod.dll" "$(OutDir)" to “Configuration Properties>Build Events>Post-Build Event>Command Line”