Can't run basic audio plugin code with Visual Studio

Hey everyone,

Do you know why I get these errors on visual studio? I’ve been checking my module paths but can’t figure it out. Hope someone can help me here :slight_smile:

Alex

You’re trying to use things from the juce:: namespace but haven’t specified the namespace when you’ve used them.

Simply add juce:: in front of any of the JUCE types you’re using.

The errors remain even when I specify juce:: (line 26)

Solved. I set the paths correctly but had to add the modules to projucer by simply clicking on them in the modules section.