diff options
| author | Ray San <[email protected]> | 2017-12-05 14:01:35 +0100 |
|---|---|---|
| committer | Ray San <[email protected]> | 2017-12-05 14:01:35 +0100 |
| commit | 3b5a26099e0cde67084481eb6048058578b30a0c (patch) | |
| tree | 96fc632a06694c1fe61c681a6ba7c1c918ffeb0d /src/CMakeLists.txt | |
| parent | 33eec3157510cf76b67c9491e606f4f75f5ea2bc (diff) | |
| download | raylib-3b5a26099e0cde67084481eb6048058578b30a0c.tar.gz raylib-3b5a26099e0cde67084481eb6048058578b30a0c.zip | |
Removed OpenAL Soft dependency on building
OpenAL Soft backend is still available in audio module, I'm thinking if
exposing it for building in some way or just left it there for advance
users to switch to it manually in case of necessity...
Diffstat (limited to 'src/CMakeLists.txt')
| -rw-r--r-- | src/CMakeLists.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index cb8af48d..819dd1a4 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -27,7 +27,6 @@ set_property(CACHE OPENGL_VERSION PROPERTY STRINGS "3.3" "2.1" "1.1" "ES 2.0") ### Config options ### include_directories(external/glfw/include) -include_directories(external/openal/include) # For use with AppVeyor on Windows # Translate the config options to what raylib wants if(${PLATFORM} MATCHES "Desktop") @@ -84,7 +83,9 @@ endif() # Get the sources together file(GLOB raylib_sources *.c) file(GLOB stb_vorbis external/stb_vorbis.c) +file(GLOB mini_al external/mini_al.c) set(sources ${raylib_sources} ${stb_vorbis}) +set(sources ${raylib_sources} ${mini_al}) # Which platform? if(${PLATFORM} MATCHES "PLATFORM_DESKTOP") |
