diff options
author | shfil <filip.gawin@zoho.com> | 2021-01-12 23:41:11 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-12 23:41:11 +0100 |
commit | 461e9fe5c2c751bf36cfb4d0ab48abbf81434168 (patch) | |
tree | c8d4e5a69377ff68ec0a8c1e16fd9a1bcd3ffebd | |
parent | ad1d0ffc5a8f07c59fbba07d9c2f907f9d66604a (diff) |
Disable opus in conan file as default option
-rw-r--r-- | conanfile.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/conanfile.py b/conanfile.py index f0d63a20..ba7d920b 100644 --- a/conanfile.py +++ b/conanfile.py @@ -19,7 +19,7 @@ class Re3Conan(ConanFile): default_options = { "audio": "openal", "with_libsndfile": False, - "with_opus": True, + "with_opus": False, # "libsndfile:with_external_libs": False, # "mpg123:flexible_resampling": False, # "mpg123:network": False, |