include trailing slash in windows file copy

This commit is contained in:
Stephen Birarda 2016-01-07 18:05:52 -08:00
parent 1faa78fe72
commit 8842c66109
2 changed files with 2 additions and 2 deletions

View file

@ -28,7 +28,7 @@ macro(install_beside_console)
else ()
# setup install of executable and things copied by fixup/windeployqt
install(
FILES $<TARGET_FILE_DIR:${TARGET_NAME}>
FILES "$<TARGET_FILE_DIR:${TARGET_NAME}>/"
DESTINATION ${COMPONENT_DESTINATION}
COMPONENT ${SERVER_COMPONENT}
)

View file

@ -231,7 +231,7 @@ else (APPLE)
# setup install of executable and things copied by fixup/windeployqt
install(
FILES $<TARGET_FILE_DIR:${TARGET_NAME}>
FILES "$<TARGET_FILE_DIR:${TARGET_NAME}>/"
DESTINATION ${INTERFACE_INSTALL_DIR}
COMPONENT ${CLIENT_COMPONENT}
)