diff options
author | shfil <filip.gawin@zoho.com> | 2021-01-12 23:46:11 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-12 23:46:11 +0100 |
commit | 4fe64d1b0d96bf5fdf8e202932815cb5bb1d2678 (patch) | |
tree | c35772fd5329252911bee258b1ed66a3284ca670 /conanfile.py | |
parent | Disable opus in conan file as default option (diff) | |
download | re3-4fe64d1b0d96bf5fdf8e202932815cb5bb1d2678.tar re3-4fe64d1b0d96bf5fdf8e202932815cb5bb1d2678.tar.gz re3-4fe64d1b0d96bf5fdf8e202932815cb5bb1d2678.tar.bz2 re3-4fe64d1b0d96bf5fdf8e202932815cb5bb1d2678.tar.lz re3-4fe64d1b0d96bf5fdf8e202932815cb5bb1d2678.tar.xz re3-4fe64d1b0d96bf5fdf8e202932815cb5bb1d2678.tar.zst re3-4fe64d1b0d96bf5fdf8e202932815cb5bb1d2678.zip |
Diffstat (limited to '')
-rw-r--r-- | conanfile.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/conanfile.py b/conanfile.py index ba7d920b..cabcc4c2 100644 --- a/conanfile.py +++ b/conanfile.py @@ -67,9 +67,9 @@ class Re3Conan(ConanFile): def validate(self): if self.options["librw"].platform == "gl3" and self.options["librw"].gl3_gfxlib != "glfw": raise ConanInvalidConfiguration("Only `glfw` is supported as gl3_gfxlib.") - if not self.options.with_opus: - if not self.options["libsndfile"].with_external_libs: - raise ConanInvalidConfiguration("re3 with opus support requires a libsndfile built with external libs (=ogg/flac/opus/vorbis)") + #if not self.options.with_opus: + # if not self.options["libsndfile"].with_external_libs: + # raise ConanInvalidConfiguration("re3 with opus support requires a libsndfile built with external libs (=ogg/flac/opus/vorbis)") @property def _re3_audio(self): |