cmake: disable UNIX_SYS by default for Android

This force disables SDL_OSS, SDL_ALSA, SDL_JACK, SDL_ESD,
SDL_PIPEWIRE, SDL_ARTS, SDL_NAS, SDL_SNDIO, SDL_LIBSAMPLERATE,
SDL_RPATH, SDL_CLOCK_GETTIME and SDL_X11.
This commit is contained in:
Anonymous Maarten 2022-06-16 03:27:52 +02:00 committed by Anonymous Maarten
parent 3b0c86a36f
commit 2f321fb73c
1 changed files with 1 additions and 1 deletions

View File

@ -178,7 +178,7 @@ elseif(CMAKE_SYSTEM_NAME MATCHES "Haiku.*")
endif()
# Don't mistake osx for unix
if(UNIX AND NOT APPLE AND NOT RISCOS)
if(UNIX AND NOT ANDROID AND NOT APPLE AND NOT RISCOS)
set(UNIX_SYS ON)
else()
set(UNIX_SYS OFF)