XoomCode / AcidMaps

Interpolated Images Generator
GNU Lesser General Public License v3.0
33 stars 10 forks source link

How to compile libacid-maps-jni.so? #16

Closed plepe closed 12 years ago

plepe commented 12 years ago

Hi!

I'm trying to compile AcidMaps myself (I have some plans to extend it).

It only creates a libacid-maps.so, but the WMS-overlay won't work with this. Apparently it needs libacid-maps-jni.so instead. Why are there to different lib-files? Maybe you could improve documentation in the Wiki and clarify on this issue?

thx, Plepe

plepe commented 12 years ago

I solved the issue myself: First you need to go to "ams/jni/build", then call "cmake ../" and "make" (that was the easy part). Second problem was, that I was using openjdk-7-jdk (Ubuntu 12.04) which produced errors about libraries missing; I finally settled on openjdk-6-jdk, not it compiles fine.

Plepe