A c++ library for parsing, browsing, changing and writing of GPX files.
See gpxlib for more information.
After cloning the project, goto the project build directory:
cd gpxlib/build
Run cmake for linux:
cmake ..
Run cmake for MinGW:
cmake -G "MinGW Makefiles" ..
Building static library:
cmake -DBUILD_SHARED_LIBS=OFF ..
Building dynamic library:
cmake -DBUILD_SHARED_LIBS=ON ..
In the directory gpxlib/test there is a test program (gpxtest).
In the directory gpxlib/examples there are a few example programs.