google / pik

A new lossy/lossless image format for photos and the internet
MIT License
834 stars 51 forks source link

Instructions on Building the Project #42

Closed karanaggarwal1 closed 6 years ago

karanaggarwal1 commented 6 years ago

There are no clear build instructions on the page for PIK encoder and decoder. The same would be very helpful.

jan-wassenberg commented 6 years ago

Hi, can you expand on what you're looking for? The page mentions `make -j8', that should be enough on a Linux/Mac machine with dev tools/libraries installed.

karanaggarwal1 commented 6 years ago

Hi @jan-wassenberg , thanks for your reply. What I am trying to say that on my first attempt, I cloned the repository and simply ran make -j8 but it didn't go proceed as one would expect it to. If there were more instructions as to what has to be done for building this project, that would be great!

jan-wassenberg commented 6 years ago

If you can go into more detail as to what went wrong, we might be able to help :) One thing that comes to mind - at the moment we have an additional dependency on Brotli. Make will prompt you to run git submodule init && git submodule update. After doing that, does running make again succeed?

karanaggarwal1 commented 6 years ago

Ah yes! That's what I was missing! Thanks for the help!