From 374806d6597d88bfeb6801858bbc9cf91e34b0ca Mon Sep 17 00:00:00 2001 From: zhbanito Date: Tue, 9 Jul 2019 21:42:30 +0300 Subject: [tesseract] Fix Port. Making it crossplatform (#7144) --- ports/tesseract/portfile.cmake | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/ports/tesseract/portfile.cmake b/ports/tesseract/portfile.cmake index 18b63cab6..9650db44a 100644 --- a/ports/tesseract/portfile.cmake +++ b/ports/tesseract/portfile.cmake @@ -31,7 +31,11 @@ vcpkg_fixup_cmake_targets(CONFIG_PATH cmake) # Install tool file(MAKE_DIRECTORY ${CURRENT_PACKAGES_DIR}/tools/tesseract) -file(COPY ${CURRENT_PACKAGES_DIR}/bin/tesseract.exe DESTINATION ${CURRENT_PACKAGES_DIR}/tools/tesseract) +set(EXTENSION) +if(WIN32) + set(EXTENSION ".exe") +endif() +file(COPY ${CURRENT_PACKAGES_DIR}/bin/tesseract${EXTENSION} DESTINATION ${CURRENT_PACKAGES_DIR}/tools/tesseract) vcpkg_copy_tool_dependencies(${CURRENT_PACKAGES_DIR}/tools/tesseract) vcpkg_copy_pdbs() -- cgit v1.2.3