I have a NPAPI plugin that is used for Screen-sharing.
For that I am using zlib, jpeg, tight-vnc libraries along with a library(say libX) that is developed by me.
Now I wish to port it to NaCl.
libX has structure like:
/X/commonfiles
/X/win/*.cpp *.h
/X/linux/*.cpp *.h
/X/mac/*.cpp *.h *.mm
These directories contain cpp files specific to the platform.
I make use of makefiles to compile them according to the platform.
But I am unable to understand how NaCl toolchain will generate a nexe or pexe from my library/code.
Is there any makefile we have to consider or any other thing I'm missing.
Please Help!
Thanks!!!