mirror of
https://github.com/GTAmodding/re3.git
synced 2024-11-14 06:58:59 +00:00
Fix
This commit is contained in:
parent
461e9fe5c2
commit
4fe64d1b0d
1 changed files with 3 additions and 3 deletions
|
@ -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):
|
||||
|
|
Loading…
Reference in a new issue