From b3facaa6bb30cdc39f2b7d632fef1e3bfeee7785 Mon Sep 17 00:00:00 2001 From: Zephyron Date: Tue, 31 Dec 2024 17:07:49 +1000 Subject: chore: update project references and add Citron copyright - Replaced all references to the old project name with Citron. - Added Citron copyright information alongside existing notices in all files. --- CMakeModules/CopyCitronQt5Deps.cmake | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'CMakeModules/CopyCitronQt5Deps.cmake') diff --git a/CMakeModules/CopyCitronQt5Deps.cmake b/CMakeModules/CopyCitronQt5Deps.cmake index b3a65c347..af58151d7 100644 --- a/CMakeModules/CopyCitronQt5Deps.cmake +++ b/CMakeModules/CopyCitronQt5Deps.cmake @@ -1,7 +1,7 @@ # SPDX-FileCopyrightText: 2016 Citra Emulator Project # SPDX-License-Identifier: GPL-2.0-or-later -function(copy_yuzu_Qt5_deps target_dir) +function(copy_citron_Qt5_deps target_dir) include(WindowsCopyFiles) if (MSVC) set(DLL_DEST "$/") @@ -29,12 +29,12 @@ function(copy_yuzu_Qt5_deps target_dir) Qt5Widgets$<$:d>.* Qt5Network$<$:d>.* ) - if (YUZU_USE_QT_MULTIMEDIA) + if (CITRON_USE_QT_MULTIMEDIA) windows_copy_files(${target_dir} ${Qt5_DLL_DIR} ${DLL_DEST} Qt5Multimedia$<$:d>.* ) endif() - if (YUZU_USE_QT_WEB_ENGINE) + if (CITRON_USE_QT_WEB_ENGINE) windows_copy_files(${target_dir} ${Qt5_DLL_DIR} ${DLL_DEST} Qt5Network$<$:d>.* Qt5Positioning$<$:d>.* @@ -57,13 +57,13 @@ function(copy_yuzu_Qt5_deps target_dir) qtwebengine_resources_200p.pak ) endif () - windows_copy_files(yuzu ${Qt5_PLATFORMS_DIR} ${PLATFORMS} qwindows$<$:d>.*) - windows_copy_files(yuzu ${Qt5_STYLES_DIR} ${STYLES} qwindowsvistastyle$<$:d>.*) - windows_copy_files(yuzu ${Qt5_IMAGEFORMATS_DIR} ${IMAGEFORMATS} + windows_copy_files(citron ${Qt5_PLATFORMS_DIR} ${PLATFORMS} qwindows$<$:d>.*) + windows_copy_files(citron ${Qt5_STYLES_DIR} ${STYLES} qwindowsvistastyle$<$:d>.*) + windows_copy_files(citron ${Qt5_IMAGEFORMATS_DIR} ${IMAGEFORMATS} qjpeg$<$:d>.* qgif$<$:d>.* ) - windows_copy_files(yuzu ${Qt5_MEDIASERVICE_DIR} ${MEDIASERVICE} + windows_copy_files(citron ${Qt5_MEDIASERVICE_DIR} ${MEDIASERVICE} dsengine$<$:d>.* wmfengine$<$:d>.* ) @@ -119,7 +119,7 @@ function(copy_yuzu_Qt5_deps target_dir) endif() # 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 yuzu POST_BUILD + add_custom_command(TARGET citron POST_BUILD COMMAND ${CMAKE_COMMAND} -E touch ${DLL_DEST}qt.conf ) -endfunction(copy_yuzu_Qt5_deps) +endfunction(copy_citron_Qt5_deps) -- cgit v1.2.3