2014-07-18 15:15:49 -07:00
|
|
|
# Doesn't realy make sense anywhere else
|
|
|
|
if(NOT MSVC)
|
|
|
|
return()
|
|
|
|
endif()
|
|
|
|
|
|
|
|
# Internal variable to avoid copying more than once
|
|
|
|
if(COPIED_DEPENDENCIES)
|
|
|
|
return()
|
|
|
|
endif()
|
|
|
|
|
|
|
|
option(COPY_DEPENDENCIES "Automaticaly try copying all dependencies" OFF)
|
|
|
|
if(NOT COPY_DEPENDENCIES)
|
|
|
|
return()
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(CMAKE_SIZEOF_VOID_P EQUAL 8)
|
|
|
|
set(_bin_suffix 64)
|
|
|
|
else()
|
|
|
|
set(_bin_suffix 32)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
find_package(Libavcodec QUIET)
|
|
|
|
find_package(Libx264 QUIET)
|
|
|
|
find_package(Libfdk QUIET)
|
|
|
|
find_package(Qt5Core QUIET)
|
|
|
|
|
|
|
|
file(GLOB FFMPEG_BIN_FILES
|
2015-03-11 19:18:49 -07:00
|
|
|
"${FFMPEG_avcodec_INCLUDE_DIR}/../bin/avcodec-*.dll"
|
2014-09-23 06:26:08 -07:00
|
|
|
"${FFMPEG_avcodec_INCLUDE_DIR}/../bin${_bin_suffix}/avcodec-*.dll"
|
2015-03-11 19:18:49 -07:00
|
|
|
"${FFMPEG_avcodec_INCLUDE_DIR}/bin${_bin_suffix}/avcodec-*.dll"
|
|
|
|
|
|
|
|
"${FFMPEG_avformat_INCLUDE_DIR}/../bin/avformat-*.dll"
|
2014-09-23 06:26:08 -07:00
|
|
|
"${FFMPEG_avformat_INCLUDE_DIR}/../bin${_bin_suffix}/avformat-*.dll"
|
2015-03-11 19:18:49 -07:00
|
|
|
"${FFMPEG_avformat_INCLUDE_DIR}/bin${_bin_suffix}/avformat-*.dll"
|
|
|
|
|
2014-09-23 06:26:08 -07:00
|
|
|
"${FFMPEG_avutil_INCLUDE_DIR}/../bin/avutil-*.dll"
|
2015-03-11 19:18:49 -07:00
|
|
|
"${FFMPEG_avutil_INCLUDE_DIR}/../bin${_bin_suffix}/avutil-*.dll"
|
|
|
|
"${FFMPEG_avutil_INCLUDE_DIR}/bin${_bin_suffix}/avutil-*.dll"
|
|
|
|
|
|
|
|
"${FFMPEG_avdevice_INCLUDE_DIR}/../bin/avdevice-*.dll"
|
|
|
|
"${FFMPEG_avdevice_INCLUDE_DIR}/../bin${_bin_suffix}/avdevice-*.dll"
|
|
|
|
"${FFMPEG_avdevice_INCLUDE_DIR}/bin${_bin_suffix}/avdevice-*.dll"
|
|
|
|
|
|
|
|
"${FFMPEG_avfilter_INCLUDE_DIR}/../bin/avfilter-*.dll"
|
|
|
|
"${FFMPEG_avfilter_INCLUDE_DIR}/../bin${_bin_suffix}/avfilter-*.dll"
|
|
|
|
"${FFMPEG_avfilter_INCLUDE_DIR}/bin${_bin_suffix}/avfilter-*.dll"
|
|
|
|
|
|
|
|
"${FFMPEG_postproc_INCLUDE_DIR}/../bin/postproc-*.dll"
|
|
|
|
"${FFMPEG_postproc_INCLUDE_DIR}/../bin${_bin_suffix}/postproc-*.dll"
|
|
|
|
"${FFMPEG_postproc_INCLUDE_DIR}/bin${_bin_suffix}/postproc-*.dll"
|
|
|
|
|
2014-09-23 06:26:08 -07:00
|
|
|
"${FFMPEG_swscale_INCLUDE_DIR}/../bin/swscale-*.dll"
|
2015-03-11 19:18:49 -07:00
|
|
|
"${FFMPEG_swscale_INCLUDE_DIR}/bin${_bin_suffix}/swscale-*.dll"
|
|
|
|
"${FFMPEG_swscale_INCLUDE_DIR}/../bin${_bin_suffix}/swscale-*.dll"
|
|
|
|
|
2014-09-23 06:26:08 -07:00
|
|
|
"${FFMPEG_swresample_INCLUDE_DIR}/../bin/swresample-*.dll"
|
2015-03-11 19:18:49 -07:00
|
|
|
"${FFMPEG_swresample_INCLUDE_DIR}/../bin${_bin_suffix}/swresample-*.dll"
|
|
|
|
"${FFMPEG_swresample_INCLUDE_DIR}/bin${_bin_suffix}/swresample-*.dll"
|
|
|
|
|
2015-02-07 04:50:36 -08:00
|
|
|
"${FFMPEG_avcodec_INCLUDE_DIR}/../bin/libopus*.dll"
|
|
|
|
"${FFMPEG_avcodec_INCLUDE_DIR}/../bin/opus*.dll"
|
|
|
|
"${FFMPEG_avcodec_INCLUDE_DIR}/bin/libopus*.dll"
|
|
|
|
"${FFMPEG_avcodec_INCLUDE_DIR}/bin/opus*.dll"
|
2015-03-11 19:18:49 -07:00
|
|
|
|
|
|
|
"${FFMPEG_avcodec_INCLUDE_DIR}/../bin${_bin_suffix}/libopus*.dll"
|
|
|
|
"${FFMPEG_avcodec_INCLUDE_DIR}/../bin${_bin_suffix}/opus*.dll"
|
|
|
|
"${FFMPEG_avcodec_INCLUDE_DIR}/bin${_bin_suffix}/libopus*.dll"
|
|
|
|
"${FFMPEG_avcodec_INCLUDE_DIR}/bin${_bin_suffix}/opus*.dll"
|
|
|
|
|
|
|
|
"${FFMPEG_avcodec_INCLUDE_DIR}/../bin/libbz2*.dll"
|
|
|
|
"${FFMPEG_avcodec_INCLUDE_DIR}/../bin/zlib*.dll"
|
|
|
|
"${FFMPEG_avcodec_INCLUDE_DIR}/bin/libbz2*.dll"
|
|
|
|
"${FFMPEG_avcodec_INCLUDE_DIR}/bin/zlib*.dll"
|
|
|
|
|
|
|
|
"${FFMPEG_avcodec_INCLUDE_DIR}/../bin${_bin_suffix}/libbz2*.dll"
|
|
|
|
"${FFMPEG_avcodec_INCLUDE_DIR}/../bin${_bin_suffix}/zlib*.dll"
|
2014-09-23 06:26:08 -07:00
|
|
|
"${FFMPEG_avcodec_INCLUDE_DIR}/bin${_bin_suffix}/libbz2*.dll"
|
2015-03-11 19:18:49 -07:00
|
|
|
"${FFMPEG_avcodec_INCLUDE_DIR}/bin${_bin_suffix}/zlib*.dll"
|
|
|
|
)
|
2014-07-18 15:15:49 -07:00
|
|
|
|
|
|
|
file(GLOB X264_BIN_FILES
|
|
|
|
"${X264_INCLUDE_DIR}/../bin${_bin_suffix}/libx264-*.dll"
|
|
|
|
"${X264_INCLUDE_DIR}/../bin/libx264-*.dll"
|
|
|
|
"${X264_INCLUDE_DIR}/bin/libx264-*.dll"
|
|
|
|
"${X264_INCLUDE_DIR}/bin${_bin_suffix}/libx264-*.dll")
|
|
|
|
|
2015-03-11 19:18:49 -07:00
|
|
|
file(GLOB FREETYPE_BIN_FILES
|
|
|
|
"${FREETYPE_INCLUDE_DIR_ft2build}/../../bin${_bin_suffix}/libfreetype*-*.dll"
|
|
|
|
"${FREETYPE_INCLUDE_DIR_ft2build}/../../bin/libfreetype*-*.dll"
|
|
|
|
"${FREETYPE_INCLUDE_DIR_ft2build}/../bin${_bin_suffix}/libfreetype*-*.dll"
|
|
|
|
"${FREETYPE_INCLUDE_DIR_ft2build}/../bin/libfreetype*-*.dll"
|
|
|
|
"${FREETYPE_INCLUDE_DIR_ft2build}/bin/libfreetype*-*.dll"
|
|
|
|
"${FREETYPE_INCLUDE_DIR_ft2build}/bin${_bin_suffix}/libfreetype*-*.dll")
|
|
|
|
|
2014-07-18 15:15:49 -07:00
|
|
|
file(GLOB LIBFDK_BIN_FILES
|
|
|
|
"${Libfdk_INCLUDE_DIR}/../bin${_bin_suffix}/libfdk*-*.dll"
|
|
|
|
"${Libfdk_INCLUDE_DIR}/../bin/libfdk*-*.dll"
|
|
|
|
"${Libfdk_INCLUDE_DIR}/bin/libfdk*-*.dll"
|
|
|
|
"${Libfdk_INCLUDE_DIR}/bin${_bin_suffix}/libfdk*-*.dll")
|
|
|
|
|
|
|
|
if (CMAKE_CONFIGURATION_TYPES MATCHES "Debug")
|
|
|
|
file(GLOB QT_DEBUG_BIN_FILES
|
|
|
|
"${Qt5Core_DIR}/../../../bin/Qt5Cored.dll"
|
|
|
|
"${Qt5Core_DIR}/../../../bin/Qt5Guid.dll"
|
|
|
|
"${Qt5Core_DIR}/../../../bin/Qt5Widgetsd.dll"
|
|
|
|
"${Qt5Core_DIR}/../../../bin/Qt5Networkd.dll"
|
|
|
|
"${Qt5Core_DIR}/../../../bin/libGLESv2d.dll"
|
|
|
|
"${Qt5Core_DIR}/../../../bin/libEGLd.dll")
|
|
|
|
file(GLOB QT_DEBUG_PLAT_BIN_FILES
|
|
|
|
"${Qt5Core_DIR}/../../../plugins/platforms/qwindowsd.dll")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if (CMAKE_CONFIGURATION_TYPES MATCHES "Rel")
|
|
|
|
file(GLOB QT_BIN_FILES
|
|
|
|
"${Qt5Core_DIR}/../../../bin/Qt5Core.dll"
|
|
|
|
"${Qt5Core_DIR}/../../../bin/Qt5Gui.dll"
|
|
|
|
"${Qt5Core_DIR}/../../../bin/Qt5Widgets.dll"
|
|
|
|
"${Qt5Core_DIR}/../../../bin/Qt5Network.dll"
|
|
|
|
"${Qt5Core_DIR}/../../../bin/libGLESv2.dll"
|
|
|
|
"${Qt5Core_DIR}/../../../bin/libEGL.dll")
|
|
|
|
file(GLOB QT_PLAT_BIN_FILES
|
|
|
|
"${Qt5Core_DIR}/../../../plugins/platforms/qwindows.dll")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
file(GLOB QT_ICU_BIN_FILES
|
|
|
|
"${Qt5Core_DIR}/../../../bin/icu*.dll")
|
|
|
|
|
|
|
|
set(ALL_BASE_BIN_FILES
|
|
|
|
${FFMPEG_BIN_FILES}
|
|
|
|
${X264_BIN_FILES}
|
|
|
|
${LIBFDK_BIN_FILES}
|
2015-03-11 19:18:49 -07:00
|
|
|
${FREETYPE_BIN_FILES}
|
2014-12-14 23:44:14 -08:00
|
|
|
${QT_ICU_BIN_FILES})
|
2014-07-18 15:15:49 -07:00
|
|
|
|
|
|
|
set(ALL_REL_BIN_FILES
|
|
|
|
${QT_BIN_FILES})
|
|
|
|
|
|
|
|
set(ALL_DBG_BIN_FILES
|
|
|
|
${QT_DEBUG_BIN_FILES})
|
|
|
|
|
|
|
|
set(ALL_PLATFORM_BIN_FILES)
|
|
|
|
|
|
|
|
set(ALL_PLATFORM_REL_BIN_FILES
|
|
|
|
${QT_PLAT_BIN_FILES})
|
|
|
|
|
|
|
|
set(ALL_PLATFORM_DBG_BIN_FILES
|
|
|
|
${QT_DEBUG_PLAT_BIN_FILES})
|
|
|
|
|
|
|
|
foreach(list
|
|
|
|
ALL_BASE_BIN_FILES ALL_REL_BIN_FILES ALL_DBG_BIN_FILES
|
|
|
|
ALL_PLATFORM_BIN_FILES ALL_PLATFORM_REL_BIN_FILES ALL_PLATFORM_DBG_BIN_FILES)
|
|
|
|
if(${list})
|
|
|
|
list(REMOVE_DUPLICATES ${list})
|
|
|
|
endif()
|
|
|
|
endforeach()
|
|
|
|
|
|
|
|
message(STATUS "FFmpeg files: ${FFMPEG_BIN_FILES}")
|
|
|
|
message(STATUS "x264 files: ${X264_BIN_FILES}")
|
|
|
|
message(STATUS "Libfdk files: ${LIBFDK_BIN_FILES}")
|
2015-03-11 19:18:49 -07:00
|
|
|
message(STATUS "Freetype files: ${FREETYPE_BIN_FILES}")
|
2014-07-18 15:15:49 -07:00
|
|
|
message(STATUS "QT Debug files: ${QT_DEBUG_BIN_FILES}")
|
|
|
|
message(STATUS "QT Debug Platform files: ${QT_DEBUG_PLAT_BIN_FILES}")
|
|
|
|
message(STATUS "QT Release files: ${QT_BIN_FILES}")
|
|
|
|
message(STATUS "QT Release Platform files: ${QT_PLAT_BIN_FILES}")
|
|
|
|
message(STATUS "QT ICU files: ${QT_ICU_BIN_FILES}")
|
|
|
|
|
|
|
|
foreach(BinFile ${ALL_BASE_BIN_FILES})
|
|
|
|
message(STATUS "copying ${BinFile} to ${CMAKE_SOURCE_DIR}/additional_install_files/exec${_bin_suffix}")
|
|
|
|
file(COPY "${BinFile}" DESTINATION "${CMAKE_SOURCE_DIR}/additional_install_files/exec${_bin_suffix}/")
|
|
|
|
endforeach()
|
|
|
|
|
|
|
|
foreach(BinFile ${ALL_REL_BIN_FILES})
|
|
|
|
message(STATUS "copying ${BinFile} to ${CMAKE_SOURCE_DIR}/additional_install_files/exec${_bin_suffix}r")
|
|
|
|
file(COPY "${BinFile}" DESTINATION "${CMAKE_SOURCE_DIR}/additional_install_files/exec${_bin_suffix}r/")
|
|
|
|
endforeach()
|
|
|
|
|
|
|
|
foreach(BinFile ${ALL_DBG_BIN_FILES})
|
|
|
|
message(STATUS "copying ${BinFile} to ${CMAKE_SOURCE_DIR}/additional_install_files/exec${_bin_suffix}d")
|
|
|
|
file(COPY "${BinFile}" DESTINATION "${CMAKE_SOURCE_DIR}/additional_install_files/exec${_bin_suffix}d/")
|
|
|
|
endforeach()
|
|
|
|
|
|
|
|
foreach(BinFile ${ALL_PLATFORM_BIN_FILES})
|
|
|
|
make_directory("${CMAKE_SOURCE_DIR}/additional_install_files/exec${_bin_suffix}/platforms")
|
|
|
|
file(COPY "${BinFile}" DESTINATION "${CMAKE_SOURCE_DIR}/additional_install_files/exec${_bin_suffix}/platforms/")
|
|
|
|
endforeach()
|
|
|
|
|
|
|
|
foreach(BinFile ${ALL_PLATFORM_REL_BIN_FILES})
|
|
|
|
make_directory("${CMAKE_SOURCE_DIR}/additional_install_files/exec${_bin_suffix}r/platforms")
|
|
|
|
file(COPY "${BinFile}" DESTINATION "${CMAKE_SOURCE_DIR}/additional_install_files/exec${_bin_suffix}r/platforms/")
|
|
|
|
endforeach()
|
|
|
|
|
|
|
|
foreach(BinFile ${ALL_PLATFORM_DBG_BIN_FILES})
|
|
|
|
make_directory("${CMAKE_SOURCE_DIR}/additional_install_files/exec${_bin_suffix}d/platforms")
|
|
|
|
file(COPY "${BinFile}" DESTINATION "${CMAKE_SOURCE_DIR}/additional_install_files/exec${_bin_suffix}d/platforms/")
|
|
|
|
endforeach()
|
|
|
|
|
|
|
|
set(COPIED_DEPENDENCIES TRUE CACHE BOOL "Dependencies have been copied, set to false to copy again" FORCE)
|