function(copy_citra_Qt6_deps target_dir) include(WindowsCopyFiles) set(DLL_DEST "${CMAKE_BINARY_DIR}/bin/$/") set(Qt6_DLL_DIR "${Qt6_DIR}/../../../bin") set(Qt6_PLATFORMS_DIR "${Qt6_DIR}/../../../plugins/platforms/") set(Qt6_MULTIMEDIA_DIR "${Qt6_DIR}/../../../plugins/multimedia/") set(Qt6_STYLES_DIR "${Qt6_DIR}/../../../plugins/styles/") set(Qt6_IMAGEFORMATS_DIR "${Qt6_DIR}/../../../plugins/imageformats/") set(PLATFORMS ${DLL_DEST}plugins/platforms/) set(MULTIMEDIA ${DLL_DEST}plugins/multimedia/) set(STYLES ${DLL_DEST}plugins/styles/) set(IMAGEFORMATS ${DLL_DEST}plugins/imageformats/) windows_copy_files(${target_dir} ${Qt6_DLL_DIR} ${DLL_DEST} icudt*.dll icuin*.dll icuuc*.dll Qt6Core$<$:d>.* Qt6Gui$<$:d>.* Qt6Widgets$<$:d>.* Qt6Concurrent$<$:d>.* Qt6Multimedia$<$:d>.* Qt6Network$<$:d>.* ) windows_copy_files(citra-qt ${Qt6_PLATFORMS_DIR} ${PLATFORMS} qwindows$<$:d>.*) windows_copy_files(citra-qt ${Qt6_MULTIMEDIA_DIR} ${MULTIMEDIA} windowsmediaplugin$<$:d>.* ) windows_copy_files(citra-qt ${Qt6_STYLES_DIR} ${STYLES} qwindowsvistastyle$<$:d>.*) windows_copy_files(${target_dir} ${Qt6_IMAGEFORMATS_DIR} ${IMAGEFORMATS} qgif$<$:d>.dll qicns$<$:d>.dll qico$<$:d>.dll qjpeg$<$:d>.dll qsvg$<$:d>.dll qtga$<$:d>.dll qtiff$<$:d>.dll qwbmp$<$:d>.dll qwebp$<$:d>.dll ) # Create an empty qt.conf file. Qt will detect that this file exists, and use the folder that its in as the root folder. # This way it'll look for plugins in the root/plugins/ folder add_custom_command(TARGET citra-qt POST_BUILD COMMAND ${CMAKE_COMMAND} -E touch ${DLL_DEST}qt.conf ) endfunction(copy_citra_Qt6_deps)