summaryrefslogtreecommitdiffhomepage
path: root/src/CMakeOptions.txt
diff options
context:
space:
mode:
authorRay <[email protected]>2018-10-18 11:38:42 +0200
committerRay <[email protected]>2018-10-18 11:38:42 +0200
commitc2aa1fed7b4b75c9bb560ffb9ff6cd8c99d7dd41 (patch)
tree32e75047121200593a9d09a32e5d5ebf171a88d2 /src/CMakeOptions.txt
parent8bac72f4fa7b08d77ae1c47570612e29d5007bb6 (diff)
downloadraylib-c2aa1fed7b4b75c9bb560ffb9ff6cd8c99d7dd41.tar.gz
raylib-c2aa1fed7b4b75c9bb560ffb9ff6cd8c99d7dd41.zip
Removed OpenAL backend
Diffstat (limited to 'src/CMakeOptions.txt')
-rw-r--r--src/CMakeOptions.txt5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/CMakeOptions.txt b/src/CMakeOptions.txt
index d4ecb392..eee3f1a9 100644
--- a/src/CMakeOptions.txt
+++ b/src/CMakeOptions.txt
@@ -12,11 +12,6 @@ option(SHARED "Build raylib as a dynamic library" OFF)
option(STATIC "Build raylib as a static library" ON)
option(MACOS_FATLIB "Build fat library for both i386 and x86_64 on macOS" OFF)
option(USE_AUDIO "Build raylib with audio module" ON)
-if(${PLATFORM} MATCHES "Web")
- cmake_dependent_option(USE_OPENAL_BACKEND "Link raylib with openAL instead of mini-al" ON "USE_AUDIO" OFF)
-else()
- cmake_dependent_option(USE_OPENAL_BACKEND "Link raylib with openAL instead of mini-al" OFF "USE_AUDIO" OFF)
-endif()
enum_option(USE_EXTERNAL_GLFW "OFF;IF_POSSIBLE;ON" "Link raylib against system GLFW instead of embedded one")
if(UNIX AND NOT APPLE)