diff options
| author | Gary Scavone <gary@music.mcgill.ca> | 2014-04-24 22:36:42 -0400 |
|---|---|---|
| committer | Gary Scavone <gary@music.mcgill.ca> | 2014-04-24 22:36:42 -0400 |
| commit | 9a920447e15eeaf8cf8f6002c120e6fb168caa6f (patch) | |
| tree | 295abc825e331759e7b23eb92d10fde8ffba641a /CMakeLists.txt | |
| parent | 4ca315146dd2b5ddb5fc859dd33c229c6ddd53bf (diff) | |
Bug fix in Core, Jack, ASIO, and DS for internal draining in INPUT mode only; Added some mutexes in DS to fix input-only errors; Added libraries to CMakeLists.txt for MinGW compile of WASAPI.
Diffstat (limited to 'CMakeLists.txt')
| -rw-r--r-- | CMakeLists.txt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 136ab8d..8c8ccf8 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -91,15 +91,17 @@ if (WIN32) endif() include_directories(include) - list(APPEND LINKLIBS dsound winmm ole32) + list(APPEND LINKLIBS winmm ole32) if (AUDIO_WINDOWS_DS) add_definitions(-D__WINDOWS_DS__) message(STATUS "Using Windows DirectSound") + list(APPEND LINKLIBS dsound) endif (AUDIO_WINDOWS_DS) if (AUDIO_WINDOWS_WASAPI) add_definitions(-D__WINDOWS_WASAPI__) message(STATUS "Using Windows WASAPI") + list(APPEND LINKLIBS uuid ksuser) endif (AUDIO_WINDOWS_WASAPI) if (AUDIO_WINDOWS_ASIO) list(APPEND rtaudio_SOURCES |
