MakeFile Fatal Error

I am very confused by this error:
juce_audio_plugin_client/juce_audio_plugin_client_VST3.cpp: No such file or directory
8 | #include <juce_audio_plugin_client/juce_audio_plugin_client_VST3.cpp>
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
compilation terminated.
make: *** [Makefile:175: build/intermediate/Debug/include_juce_audio_plugin_client_VST3_dd633589.o] Error 1

I have set my include path correctly, and have included many more paths in the hope of finding the issue:

“includePath”: [
“${workspaceFolder}/",
"…/…/…/…/…/mnt/d/
”,
“…/…/jaspe/JUCE/",
"/usr/include/
”,
“…/…/…/…/…/mnt/d/MATLAB/",
"/…/${workspaceFolder}/
”,
“${workspaceFolder}/JuceLibraryCode/",
"/…/JUCE/
”,
“…/…/…/…/c/newJUCE/",
"…/…/…/…/c/Users/jaspe/JUCE/
”,
“/usr/",
"/…/mnt/c/

]

Any suggestions would be very welcome, this appears ‘buggy’ to me as I have had JUCE projects working prior on this configuration, unless I am being very stupid (high chance!)
Many thanks

When you install JUCE the normal way, you are asked to specify an installation directory. By default this should by (on Mac) /Users//JUCE. So you would want to include “/Users/jaspe/JUCE/modules/”. Also, double check that the module “juce_audio_plugin_client” is still in there. Maybe it got accidentily moved or deleted.

the module is still present, I have redownloaded JUCE from the website and have created a path to the modules there as well. I stored my JUCE in a different location, (I’m on windows) which is also covered by the path, Many thanks

All the .cpp files say they are missing from the include path, but all the .mm are absolutely fine

(SORT OF) FIX: for those who may be having this, I copied the modules to be within the project (in the projucer module settings), works now