How To Import Navit Into Eclipse And Use It In Own Android Project
I'd like to create a custom application which would use 3D navigation. I found the Navit opensource project, which has all functionalities that I need. I checked out the last Navit
Solution 1:
- Start a new project, pick import SVN
svn co svn://svn.repository.with.navi.code.you.want.to.import - Select C/C++ project
- Choose now GNU Autotools(if there is nothing under toolchains install autotools(autoconf,automake/gettext) via your os packagemanager)
- Open a terminal, switch to your workspace navit folder and invoke
cmake ./
you now have makefile that matches your local setup - In Eclipse, pick "build all" and you should get a binary
- Run as application and you your local build should start
Post a Comment for "How To Import Navit Into Eclipse And Use It In Own Android Project"