Anonymous Maarten
Anonymous Maarten
Can you also look at this SDL_ttf xcode error? ``` 2024-10-09T02:31:21.7747910Z error: Build input file cannot be found: '/Users/runner/work/SDL_ttf/SDL_ttf/tardir/SDL3_ttf-3.0.0/Xcode/SDL_surface_textengine.c'. Did you forget to declare this file as an output of...
Thanks! Everything's building. I've got a question about SDL3_mixer. Using the bottom build.xcconfig from https://github.com/libsdl-org/SDL_mixer/issues/638#issuecomment-2387181754, I get a dmg that is missing gme and wavpack. Is that expected? https://github.com/madebr/SDL_mixer/actions/runs/11261633476
I've been told the ogg xcframework also needs to be part of the dmg because opus depends on it. > the ldd equivalent of macOS (otool -L) gives the following...
Also: > Building SDL3_mixer with CMake using the SDLMIXER_DEPS_SHARED option and _SHARED options does not add any lib to the otool -L output In CMake, when loading the dependencies using...
Can you have a look at the SDL_mixer project? I think that's the only remaining issue for generating "working" packages. On the other hand, SDL_mixer is not release-ready so if...
This is the current situation: ``` /Volumes/SDL3_mixer/optional/FLAC.xcframework MISSING /Volumes/SDL3_mixer/optional/gme.xcframework OK /Volumes/SDL3_mixer/optional/mpg123.xcframework MISSING /Volumes/SDL3_mixer/optional/ogg.xcframework MISSING /Volumes/SDL3_mixer/optional/opus.xcframework OK /Volumes/SDL3_mixer/optional/vorbis.xcframework MISSING /Volumes/SDL3_mixer/optional/wavpack.xcframework OK /Volumes/SDL3_mixer/optional/xmp.xcframework OK ``` vorbis support is provided by stb_vorbis, mp3...
You probably want ```cmake set(ISLE_ENTROPY_FILENAME "entropy.h" CACHE STRING "Entropy header filename") ```
I agree with licensing my code under LGPLv3
Looks like `IRandomBetween` is a bit more complicated. Does the following work for you on Windows? ```c int IRandomBetween(int pA, int pB) { long long int a = rand() *...
Are you using CMake 3.28+? [That version introduced support for xcframeworks](https://cmake.org/cmake/help/latest/release/3.28.html#platforms), which the xcframework cmake config file uses. https://github.com/libsdl-org/SDL/blob/4d32f66fe7a1946384b062cea87f520b75139536/Xcode/SDL/pkg-support/resources/CMake/sdl3-config.cmake#L93-L100