Jonas Resch

Results 17 comments of Jonas Resch

Hey, I implemented this feature (not merged yet). Could you please do a test with [this APK](https://github.com/user-attachments/files/15821571/app-notquitemy-debug.zip)? I tested it with a Navidrome instance behind a reverse proxy + HTTP...

Hi, just wanted to ask if you already had time to look at the issue? Thank you!

Hi, I'm using cmakes FetchContent to download the library. Then I link it with `target_link_libraries`. These are snippets from my CMakelist.txt which are related to DPP: ``` FetchContent_Declare(DPP GIT_REPOSITORY "https://github.com/brainboxdotcc/DPP.git"...

When building DPP. So to reproduce: - git clone https://github.com/brainboxdotcc/DPP.git - cd DPP - cmake -B build -DBUILD_SHARED_LIBS=OFF - make -C build

Hi, in the meantime I found another issue with the static build (let me know if I should create a separate issue for it). I think zstd is not getting...

I tried adding the hardcoded path to zstd ( `/usr/lib/x86_64-linux-gnu/libzstd.a`) to the target_link_libraries in the main CMakeLists.txt file, but nothing changed. When I add `/usr/lib/x86_64-linux-gnu/libzstd.a` at the end of this...

Thanks for the feedback. Yes, keeping the packaged library updated can be a downside. On the other hand you can guarantee that the installed version of the library is being...

It could very well be a problem with my setup. Building the library statically on its own now works when disabling building tests. For some reason once I use it...

Thank you! Already tried that before but I messed up the path (I specified the root of the folder, not the include folder). Nonetheless I don't get why the static...