aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorScott <smasherprog@gmail.com>2017-05-22 18:06:33 -0700
committerGitHub <noreply@github.com>2017-05-22 18:06:33 -0700
commit21e30e6d802e3ab3b985cb9b4bde0fa5adef432d (patch)
tree45957440439969e9cbdc029f9c3c8190ce63c640
parent082c827fd38eabf3a8f60407cbc19df715432143 (diff)
downloadvcpkg-21e30e6d802e3ab3b985cb9b4bde0fa5adef432d.tar.gz
vcpkg-21e30e6d802e3ab3b985cb9b4bde0fa5adef432d.zip
Added fluid.exe to output tools
This is added as per the conversion here https://github.com/Microsoft/vcpkg/pull/551#issuecomment-303247813 If this should not be in the vcpkg output, please close the PR.
-rw-r--r--ports/fltk/portfile.cmake4
1 files changed, 4 insertions, 0 deletions
diff --git a/ports/fltk/portfile.cmake b/ports/fltk/portfile.cmake
index 261a03c7f..aca489e3f 100644
--- a/ports/fltk/portfile.cmake
+++ b/ports/fltk/portfile.cmake
@@ -40,11 +40,15 @@ file(REMOVE_RECURSE
${CURRENT_PACKAGES_DIR}/debug/CMAKE
${CURRENT_PACKAGES_DIR}/debug/include
)
+
+file(COPY ${CURRENT_PACKAGES_DIR}/bin/fluid.exe DESTINATION ${CURRENT_PACKAGES_DIR}/tools)
file(REMOVE ${CURRENT_PACKAGES_DIR}/bin/fluid.exe)
file(REMOVE ${CURRENT_PACKAGES_DIR}/bin/fltk-config)
+file(COPY ${CURRENT_PACKAGES_DIR}/debug/bin/fluid.exe DESTINATION ${CURRENT_PACKAGES_DIR}/tools/debug)
file(REMOVE ${CURRENT_PACKAGES_DIR}/debug/bin/fluid.exe)
file(REMOVE ${CURRENT_PACKAGES_DIR}/debug/bin/fltk-config)
+
vcpkg_copy_pdbs()
if (VCPKG_LIBRARY_LINKAGE STREQUAL dynamic)