mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-01-19 20:24:49 +00:00
9 lines
305 B
CMake
9 lines
305 B
CMake
# OpenAL module
|
|
option(TORQUE_SFX_DIRECTX "Use DirectSound SFX" OFF)
|
|
|
|
if(TORQUE_SFX_DIRECTX AND WIN32)
|
|
message("Enabling DirectSound Module")
|
|
|
|
torqueAddSourceDirectories("${CMAKE_SOURCE_DIR}/Engine/source/sfx/dsound" "${CMAKE_SOURCE_DIR}/Engine/source/sfx/xaudio")
|
|
endif(TORQUE_SFX_DIRECTX AND WIN32)
|