mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-25 23:29:00 +08:00
14 lines
377 B
CMake
14 lines
377 B
CMake
|
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
|
||
|
)
|