Open rakslice opened 4 years ago
For an example of an SDL_VERSION_ATLEAST
that is properly inside an #ifdef block see the other two uses of it in the file ;)
Thanks for contributing this! I've been trying to get this project to a CI-able state and it's been tough.
Before the lockdown hit, I was making plans to convert this over to CMake, as the existing build system is homemade and "quirky" to say the least.
I had a lot of trouble getting SDL to even install / build with this project in Appveyor too. Is the error message in #83 one that you recognize?
I took a glance at the Windows builds linked from https://github.com/emaculation/macemu previously and was confused about the state of the build jobs because they say 'MSYS' but are using Cygwin, not MSYS
I'll talk more about it on that issue.
https://github.com/emaculation/macemu/blob/19e0f582e57f611d495f5025fa93672db98bda15/SheepShaver/src/Unix/main_unix.cpp#L838
SDL_VERSION_ATLEAST(x,y,z)
tests should be inside aUSE_SDL
case, becauseSDL_VERSION_ATLEAST
is defined in SDL headers and won't even compile if you're building without SDL.