diff options
author | Chris Robinson <[email protected]> | 2017-09-15 22:40:51 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2017-09-15 22:40:51 -0700 |
commit | 4ca8b4080a2a0a434a35179a869e23c288bb7451 (patch) | |
tree | 4e608a506942d7f57dc1c6b25e50980116458f08 /CMakeLists.txt | |
parent | c7273ada8eb8ec75447147c55fd17d98a3d3519d (diff) |
Always link to ossaudio when found
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 60979b46..b3e4c44d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -905,7 +905,7 @@ IF(OSS_FOUND) SET(BACKENDS "${BACKENDS} OSS,") SET(ALC_OBJS ${ALC_OBJS} Alc/backends/oss.c) IF(OSS_LIBRARIES) - ADD_BACKEND_LIBS(${OSS_LIBRARIES}) + SET(EXTRA_LIBS ${OSS_LIBRARIES} ${EXTRA_LIBS}) ENDIF() ENDIF() ENDIF() |