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. --- src/CMakeLists.txt | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'src/CMakeLists.txt') diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index cf05a3fe3..5aeada472 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -1,4 +1,4 @@ -# SPDX-FileCopyrightText: 2018 yuzu Emulator Project +# SPDX-FileCopyrightText: 2018 yuzu Emulator Project & 2025 citron Homebrew Project # SPDX-License-Identifier: GPL-2.0-or-later # Enable modules to include each other's files @@ -88,7 +88,7 @@ if (MSVC) /wd4702 # unreachable code (when used with LTO) ) - if (USE_CCACHE OR YUZU_USE_PRECOMPILED_HEADERS) + if (USE_CCACHE OR CITRON_USE_PRECOMPILED_HEADERS) # when caching, we need to use /Z7 to downgrade debug info to use an older but more cacheable format # Precompiled headers are deleted if not using /Z7. See https://github.com/nanoant/CMakePCHCompiler/issues/21 add_compile_options(/Z7) @@ -192,20 +192,20 @@ add_subdirectory(input_common) add_subdirectory(frontend_common) add_subdirectory(shader_recompiler) -if (YUZU_ROOM) +if (CITRON_ROOM) add_subdirectory(dedicated_room) endif() -if (YUZU_TESTS) +if (CITRON_TESTS) add_subdirectory(tests) endif() if (ENABLE_SDL2) - add_subdirectory(yuzu_cmd) + add_subdirectory(citron_cmd) endif() if (ENABLE_QT) - add_subdirectory(yuzu) + add_subdirectory(citron) endif() if (ENABLE_WEB_SERVICE) @@ -214,5 +214,5 @@ endif() if (ANDROID) add_subdirectory(android/app/src/main/jni) - target_include_directories(yuzu-android PRIVATE android/app/src/main) + target_include_directories(citron-android PRIVATE android/app/src/main) endif() -- cgit v1.2.3