aboutsummaryrefslogtreecommitdiff
path: root/ports/pdal/FindGeoTIFF.cmake
blob: 51a5fb2d8df5c83ddf2e5bc617b15c44f2528988 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
find_path(GEOTIFF_INCLUDE_DIR geotiff.h)

find_library(GEOTIFF_LIBRARY_DEBUG NAMES geotiff_d)
find_library(GEOTIFF_LIBRARY_RELEASE NAMES geotiff)

include(SelectLibraryConfigurations)
select_library_configurations(GEOTIFF)

include(FindPackageHandleStandardArgs)
FIND_PACKAGE_HANDLE_STANDARD_ARGS(
    GEOTIFF DEFAULT_MSG
    GEOTIFF_LIBRARY GEOTIFF_INCLUDE_DIR
)