Errors in JUCE default code

![image|690x378](upload://lWIBzmhAuFNdO


2dV9Wkt1WsEo7P.png)
Hello, I am running into problems with the default JUCE code after running, so nothing added except for #include lines at the top.

In the terminal I use:
mkdir build
cd build
cmake -G “MinGW Makefiles” …

Then when I use:
mingw32-make

I get the 2 problems in the picture provided. I use windows with the latest JUCE version, and VSCode.

I’m not sure why I’d get these codes since this is the default JUCE source files, I’m a beginner so maybe I’m missing something. Thank you.

You must have somehow accidentally edited the getName method in the PluginProcessor.cpp file?

The getName method should be written like :

const juce::String AudioPluginAudioProcessor::getName() const
{
    return JucePlugin_Name;
}

With AudioPluginAudioProcessor replaced with your actual class name of course.