[cmake, dist] fix eden app name and VUL
All checks were successful
eden-license / license-header (pull_request) Successful in 22s

Signed-off-by: crueter <crueter@eden-emu.dev>
This commit is contained in:
crueter 2025-08-04 11:53:51 -04:00
parent c60a767276
commit 83866f4b05
Signed by: crueter
GPG key ID: 425ACD2D4830EBC6
3 changed files with 8 additions and 1 deletions

View file

@ -7,7 +7,7 @@
[Desktop Entry]
Version=1.0
Type=Application
Name=eden
Name=Eden
GenericName=Switch Emulator
Comment=Nintendo Switch video game console emulator
Icon=org.eden_emu.eden

View file

@ -330,6 +330,9 @@ CPMAddPackage(
CUSTOM_CACHE_KEY "df2e"
)
set(VulkanUtilityLibraries_SOURCE_DIR "${VulkanUtilityLibraries_SOURCE_DIR}" PARENT_SCOPE)
set(VulkanUtilityLibraries_ADDED "${VulkanUtilityLibraries_ADDED}" PARENT_SCOPE)
# SPIRV-Tools
if (YUZU_USE_EXTERNAL_VULKAN_SPIRV_TOOLS)
CPMAddPackage(

View file

@ -333,6 +333,10 @@ if (VulkanMemoryAllocator_ADDED)
target_include_directories(video_core PUBLIC ${VulkanMemoryAllocator_SOURCE_DIR}/include)
endif()
if (VulkanUtilityLibraries_ADDED)
target_include_directories(video_core PUBLIC ${VulkanUtilityLibraries_SOURCE_DIR}/include)
endif()
target_link_libraries(video_core PRIVATE sirit Vulkan::Headers)
if (ENABLE_NSIGHT_AFTERMATH)