Skip to content
This repository has been archived by the owner. It is now read-only.
Permalink
Browse files
Replace MPG123 with minimp3, replace std::threads with pthread wrappe…
…r, seperate vendor folder into vendor and external
  • Loading branch information
erorcun committed Jul 31, 2021
1 parent a437d2b commit 3aad099f6d4758b9c69f080050a8b947b58a37bc

File 6 of 52 in 3aad099

@@ -21,15 +21,6 @@ class Re3Conan(ConanFile):
"with_libsndfile": False,
"with_opus": False,
# "libsndfile:with_external_libs": False,
# "mpg123:flexible_resampling": False,
# "mpg123:network": False,
# "mpg123:icy": False,
# "mpg123:id3v2": False,
# "mpg123:ieeefloat": False,
# "mpg123:layer1": False,
# "mpg123:layer2": False,
# "mpg123:layer3": False,
# "mpg123:moreinfo": False,
# "sdl2:vulkan": False,
# "sdl2:opengl": True,
# "sdl2:sdl2main": True,
@@ -49,11 +40,9 @@ def configure(self):

def requirements(self):
self.requires("librw/{}".format(self.version))
self.requires("mpg123/1.26.4")
if self.options.audio == "openal":
self.requires("openal/1.21.0")
elif self.options.audio == "miles":
self.requires("miles-sdk/{}".format(self.version))

if self.options.with_libsndfile:
self.requires("libsndfile/1.0.30")
if self.options.with_opus:

0 comments on commit 3aad099

Please sign in to comment.