CMake: Fix building against macOS framework builds of SDL #11710
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Our find script wasn't compatible with SDL's framework builds. SDL has shipped with a CMake find script since 2.0.10, and hopefully no one is trying to use an SDL older than that, so I just removed the find script.
In addition, the framework build's find script supplies its link arguments with
INTERFACE_LINK_OPTIONS, which didn't propagate across private dependencies until CMake 3.17 with CMP0099 enabled.Note: An alternative to manually enabling these policies would be to mass enable all policies introduced up to 3.26 (when supported) with
cmake_minimum_required(VERSION 3.13...3.26). Preferences?