Skip to content
This repository has been archived by the owner on May 11, 2022. It is now read-only.

Latest commit

 

History

History
41 lines (18 loc) · 612 Bytes

README.md

File metadata and controls

41 lines (18 loc) · 612 Bytes

gpxlib

A c++ library for parsing, browsing, changing and writing of GPX files.

See gpxlib for more information.

Building

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 ..

Tests

In the directory gpxlib/test there is a test program (gpxtest).

Examples

In the directory gpxlib/examples there are a few example programs.