geos_cmake_module repository

Repository Summary

Checkout URI https://github.com/swri-robotics/geos_cmake_module.git
VCS Type git
VCS Version master
Last Updated 2020-09-04
Dev Status MAINTAINED
CI status No Continuous Integration
Released RELEASED
Tags No category tags.
Contributing Help Wanted (0)
Good First Issues (0)
Pull Requests to Review (0)

Packages

Name Version
geos_cmake_module 0.0.2

README

# geos_cmake_module
A package providing FindGEOS.cmake

## Usage
To use the CMake modules provided by this catkin package, you must `<build_depend> `on it in your `package.xml`, like so:


geos_cmake_module


Then you must find_package it in your `CMakeLists.txt` along with your other catkin build dependencies:


find_package(catkin REQUIRED COMPONENTS ... geos_cmake_module ...)


After the above find_package invocations, the modules provided by cmake_modules will be available in your CMAKE_MODULE_PATH to be found. For example you can find `libgeos` by using the following:


find_package(GEOS REQUIRED)


To use libgeos, be sure to add the GEOS variables to the following:


include_directories( ... ${GEOS_INCLUDE_DIRS} )



target_link_libraries( ... ${GEOS_LIBRARIES} )



CONTRIBUTING

No CONTRIBUTING.md found.