https://gitlab.com/quadcricket/legend-of-pandoraI had ported my old project to Windows years ago with Pelles C but now I am having trouble setting up the project in Windows 10 (There are still POCC ifdefs in the code to help compilation).
I followed the help in the forums setting up SDL with a static library but I am not quite sure what to do with SDL_mixer and it's dependency libmad.
Any help would be appreciated.
Edit:
I found that SDL_Mixer has a static .lib ready to go on it's download page and was able to include it no problem. No issues with libmad as far as I can see. It's not compiling yet since, apparently, switch case ranges are a gcc thing and I will need to convert all of them, which might take a bit.
Edit 2:
I commented out the case ranges and added an ifdef to make the Windows' main statement: "int WINAPI wWinMain(HINSTANCE h , HINSTANCE p , wchar_t* c , int s )"
and all is well. I'm glad to see it running!