You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
The reason will be displayed to describe this comment to others. Learn more.
I went around and also did the the cmake scripts.
I'm a bit curious what the fallout will be: there will be build failures because people are used to include SDL_image through #include "SDL_image.h" instead of #include <SDL3_image/SDL_image.h>.
0556b71
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is reverting 37a4b80 for what reason? (You did this other libs too.)
0556b71
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh shoot. Ryan did
#include "SDL_net.h"
and I assumed it was an oversight in the .pc files.I wonder what would be best for the transition from SDL2 to SDL3 for users: we want to avoid including an SDL2_image header after SDL3.
Gotta revert 'em all?
0556b71
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Btw, I've added a check in CMake that fails when users attempt to link SDL2 ànd SDL3 to the same target.
0556b71
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, looks like it
0556b71
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I went around and also did the the cmake scripts.
I'm a bit curious what the fallout will be: there will be build failures because people are used to include SDL_image through
#include "SDL_image.h"
instead of#include <SDL3_image/SDL_image.h>
.