Closed McSinyx closed 4 years ago
I am unsure how to get CMake to choose OpenAL Soft over the builtin so currently alure is build against the Core Audio version.
You could try setting the OPENALDIR
env var to wherever Homebrew installs it. Env vars like that are normally supposed to override the default detection, although CMake's FindOpenAL module says "On OS X, this will prefer the Framework version (if found) over others", so I don't know if that will actually work or not. Alternatively, you can try specifying something like -DOPENAL_LIBRARY=/path/to/hbrew/lib/libopenal.dylib -DOPENAL_INCLUDE_DIR=/path/to/hbrew/include/AL
to cmake, but I don't know if that will actually work either.
That does not seem to be work. I've opened a issue on the CMake side. I guess this should be put on hold for a while until we find out how.
I think this is ready for review now @kcat.
Looks good. Thanks!
Changes to
.travis.yml
includes:--parallel
for faster building.I am unsure how to get CMake to choose OpenAL Soft over the builtin so currently alure is build against the Core Audio version.