From bfbaac56e6e66ecf34c4b3c5008cb45c703b9f9f Mon Sep 17 00:00:00 2001 From: Even Rouault Date: Tue, 13 May 2025 15:30:59 +0200 Subject: [PATCH] Fix build issue on geotifcp when PROJ is not installed in a system directory Fixes #137 --- libgeotiff/bin/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/libgeotiff/bin/CMakeLists.txt b/libgeotiff/bin/CMakeLists.txt index 87957b1..9ce8cf5 100644 --- a/libgeotiff/bin/CMakeLists.txt +++ b/libgeotiff/bin/CMakeLists.txt @@ -31,6 +31,7 @@ TARGET_LINK_LIBRARIES(geotifcp ${GEOTIFF_LIBRARY_TARGET} ${JPEG_LIBRARIES} ${ZLIB_LIBRARIES}) +target_include_directories(geotifcp PRIVATE $) SET(GEOTIFF_UTILITIES ${GEOTIFF_UTILITIES} geotifcp )