forked from libgeos/geos
-
Notifications
You must be signed in to change notification settings - Fork 0
Geometry Engine, Open Source
License
jryanearl/libgeos
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
BUILDING ======== Unix ----- # ./configure # make # make install Win32 ----- Win32 Visual Studio Builds: source\makefile.vc TESTING ======= - Run 'make check' - cd tests/xmltester; make test (to be included in 'make check' rule) CLIENT APPLICATIONS =================== Using the C interface (recommended) ----------------------------------- To compile programs against the C lib (recommended): CFLAGS += `geos-config --cflags` LDFLAGS += `geos-config --ldflags` -lgeos_c #include <geos_c.h> Example usage: capi/geostest.c contains basic usage examples. Using the C++ interface (discouraged) ------------------------------------- To compile programs against the C++ lib: CFLAGS += `geos-config --cflags` LDFLAGS += `geos-config --ldflags` -lgeos #include <geos.h> Example usage: doc/example.cpp contains basic usage examples. DOCUMENTATION ============= # cd doc; make doxygen-html http://geos.refractions.net
About
Geometry Engine, Open Source
Resources
License
Stars
Watchers
Forks
Packages 0
No packages published
Languages
- C++ 99.1%
- Other 0.9%