Okay, so I've downloaded a third-party library SDL_mixer, which plays sound. Even tho I placed the .h
file in the include folder, it's still showing me the error:
fatal error: SDL_stdinc.h: No such file or directory
Here's the screenshot below:
CodePudding user response:
I think you should look inside the SDL_mixer.h library. SDL_stdinc.h may be defined in it.
CodePudding user response:
Maybe try
#include "SDL_stdinc.h"
this...