diff options
| author | 2022-12-03 12:09:21 -0500 | |
|---|---|---|
| committer | 2022-12-03 12:09:21 -0500 | |
| commit | 22aff09b33941cdf907e474cb86117fef838abba (patch) | |
| tree | 73a747be44fd2ba994c3d40c8f6ea18633c0f880 /externals | |
| parent | Merge pull request #9353 from vonchenplus/draw_indexed (diff) | |
| parent | general: fix compile for Apple Clang (diff) | |
| download | yuzu-22aff09b33941cdf907e474cb86117fef838abba.tar.gz yuzu-22aff09b33941cdf907e474cb86117fef838abba.tar.xz yuzu-22aff09b33941cdf907e474cb86117fef838abba.zip | |
Merge pull request #9289 from liamwhite/fruit-company
general: fix compile for Apple Clang
Diffstat (limited to 'externals')
| -rw-r--r-- | externals/CMakeLists.txt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/externals/CMakeLists.txt b/externals/CMakeLists.txt index 9740e017c..25ef0c058 100644 --- a/externals/CMakeLists.txt +++ b/externals/CMakeLists.txt | |||
| @@ -67,6 +67,9 @@ if (YUZU_USE_EXTERNAL_SDL2) | |||
| 67 | endif() | 67 | endif() |
| 68 | set(SDL_STATIC ON) | 68 | set(SDL_STATIC ON) |
| 69 | set(SDL_SHARED OFF) | 69 | set(SDL_SHARED OFF) |
| 70 | if (APPLE) | ||
| 71 | set(SDL_FILE ON) | ||
| 72 | endif() | ||
| 70 | 73 | ||
| 71 | add_subdirectory(SDL EXCLUDE_FROM_ALL) | 74 | add_subdirectory(SDL EXCLUDE_FROM_ALL) |
| 72 | endif() | 75 | endif() |