netpyoung / unity.webp

:art: WebP made easy for Unity3d
https://netpyoung.github.io/unity.webp/
MIT License
253 stars 30 forks source link

WebP source code #38

Closed NikMikk closed 2 years ago

NikMikk commented 2 years ago

Hi!

First of all, this library works wonders, I'm using this library in our game and it works wonders on Windows.

My current issue is that I need to compile a native .dll file for Nintendo Switch so I need access to the WebP source code, I need to run it through their compiler. How can I compile the project? :)

netpyoung commented 2 years ago

Hey!

Webp is google's opensource, so you can freely access source code https://github.com/webmproject/libwebp .

## example - idk it's work or not.
./autogen.sh
./configure --prefix=`pwd`/.lib --enable-everything --disable-static
make && make install
NikMikk commented 2 years ago

Thanks for that, can't get it to compile, I guess that's something for me to look into ^^