vcpkg/ports/pdal/FindGEOS.cmake
Mateusz Loskot 2978f18ad3 Add PDAL 1.7.1 (#3452)
* Add PDAL 1.7.1

First stab at porting PDAL (https://pdal.io), creates package:
- with minimal set of required dependencies
- with dynamic library only - dependency GDAL does not build as static
- with pdal executable

* [pdal] Allow building static libs on top of DLLs.
2018-05-17 23:42:45 -07:00

14 lines
352 B
CMake

find_path(GEOS_INCLUDE_DIR geos_c.h)
find_library(GEOS_LIBRARY_DEBUG NAMES geos_cd)
find_library(GEOS_LIBRARY_RELEASE NAMES geos_c)
include(SelectLibraryConfigurations)
select_library_configurations(GEOS)
include(FindPackageHandleStandardArgs)
FIND_PACKAGE_HANDLE_STANDARD_ARGS(
GEOS DEFAULT_MSG
GEOS_LIBRARY GEOS_INCLUDE_DIR
)