diff options
| -rw-r--r-- | ports/poco/portfile.cmake | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/ports/poco/portfile.cmake b/ports/poco/portfile.cmake index 271e223f8..1f8cd5599 100644 --- a/ports/poco/portfile.cmake +++ b/ports/poco/portfile.cmake @@ -46,8 +46,13 @@ vcpkg_configure_cmake( vcpkg_install_cmake() file(MAKE_DIRECTORY ${CURRENT_PACKAGES_DIR}/tools) +if (WIN32) file(RENAME ${CURRENT_PACKAGES_DIR}/bin/cpspc.exe ${CURRENT_PACKAGES_DIR}/tools/cpspc.exe) file(RENAME ${CURRENT_PACKAGES_DIR}/bin/f2cpsp.exe ${CURRENT_PACKAGES_DIR}/tools/f2cpsp.exe) +else() +file(RENAME ${CURRENT_PACKAGES_DIR}/bin/cpspc ${CURRENT_PACKAGES_DIR}/tools/cpspc) +file(RENAME ${CURRENT_PACKAGES_DIR}/bin/f2cpsp ${CURRENT_PACKAGES_DIR}/tools/f2cpsp) +endif() if (VCPKG_LIBRARY_LINKAGE STREQUAL static) file(REMOVE_RECURSE |
