From ff03ef657a7abda4d3401a3380fe3f2675f48822 Mon Sep 17 00:00:00 2001 From: lizzie Date: Thu, 5 Feb 2026 22:38:55 +0100 Subject: [PATCH] [cmake, macos] use CMAKE_SOURCE_DIR instead of relative icon paths (#3370) should be a pretty innocuous change I believe Signed-off-by: lizzie Reviewed-on: https://git.eden-emu.dev/eden-emu/eden/pulls/3370 Reviewed-by: DraVee Co-authored-by: lizzie Co-committed-by: lizzie --- src/yuzu/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/yuzu/CMakeLists.txt b/src/yuzu/CMakeLists.txt index 27911d2ac8..0d49e4a5e7 100644 --- a/src/yuzu/CMakeLists.txt +++ b/src/yuzu/CMakeLists.txt @@ -361,12 +361,12 @@ endif() if (APPLE) # Normal icns - set(MACOSX_ICON "../../dist/eden.icns") + set(MACOSX_ICON "${CMAKE_SOURCE_DIR}/dist/eden.icns") set_source_files_properties(${MACOSX_ICON} PROPERTIES MACOSX_PACKAGE_LOCATION Resources) target_sources(yuzu PRIVATE ${MACOSX_ICON}) # Liquid glass - set(MACOSX_LIQUID_GLASS_ICON "../../dist/Assets.car") + set(MACOSX_LIQUID_GLASS_ICON "${CMAKE_SOURCE_DIR}/dist/Assets.car") set_source_files_properties(${MACOSX_LIQUID_GLASS_ICON} PROPERTIES MACOSX_PACKAGE_LOCATION Resources) target_sources(yuzu PRIVATE ${MACOSX_LIQUID_GLASS_ICON})