obs-filters: Fix legacy CMake obs_status for RNNoise

Setting ENABLE_RNNOISE to OFF would result in SpeexDSP being logged as
disabled. Correct the CMake logging.
This commit is contained in:
Ryan Foster
2023-07-12 12:10:20 -04:00
parent b2405e465a
commit a167d7f916
+1 -1
View File
@@ -30,7 +30,7 @@ else()
endif()
if(NOT ENABLE_RNNOISE)
obs_status(DISABLED "SpeexDSP")
obs_status(DISABLED "RNNoise")
else()
find_package(Librnnoise QUIET)