Skip to content

Commit

Permalink
SoundAPI: OpenAL support
Browse files Browse the repository at this point in the history
  • Loading branch information
LAGonauta committed Feb 5, 2025
1 parent ec2d7c0 commit b02bd62
Show file tree
Hide file tree
Showing 16 changed files with 3,874 additions and 0 deletions.
5 changes: 5 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,7 @@ if (WIN32)
option(ENABLE_XAUDIO "Enables the xaudio backend" ON)
endif()
option(ENABLE_CUBEB "Enabled cubeb backend" ON)
option(ENABLE_OPENAL "Enabled OpenAL backend" ON)

option(ENABLE_WXWIDGETS "Build with wxWidgets UI (Currently required)" ON)

Expand Down Expand Up @@ -220,6 +221,10 @@ if (ENABLE_CUBEB)
add_compile_definitions("HAS_CUBEB=1")
endif()

if (ENABLE_OPENAL)
add_compile_definitions("HAS_OPENAL=1")
endif()

add_subdirectory("dependencies/ih264d" EXCLUDE_FROM_ALL)

find_package(ZArchive)
Expand Down
Loading

0 comments on commit b02bd62

Please sign in to comment.