From 509a15f120746f6a021f86a4122a20c22e911fde Mon Sep 17 00:00:00 2001 From: Christophe Date: Tue, 22 Sep 2026 19:44:11 +0200 Subject: [PATCH] vkprofiles: Fix Linux install directory --- CMakeLists.txt | 2 +- library/CMakeLists.txt | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 84487f64..04d4c015 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -202,7 +202,7 @@ add_dependencies(VpProfilesProcessor python_venv) if(WIN32) set(VKPROFILES_INSTALL_DIR "Bin") else() - set(VKPROFILES_INSTALL_DIR "${CMAKE_INSTALL_DATADIR}/vulkan/bin") + set(VKPROFILES_INSTALL_DIR "${CMAKE_INSTALL_BINDIR}") endif() install(PROGRAMS "${CMAKE_CURRENT_SOURCE_DIR}/scripts/vkprofiles${CMAKE_EXECUTABLE_SUFFIX}" diff --git a/library/CMakeLists.txt b/library/CMakeLists.txt index d7a2e88e..1cd6bf4d 100644 --- a/library/CMakeLists.txt +++ b/library/CMakeLists.txt @@ -19,7 +19,6 @@ add_library(Vulkan::Profiles ALIAS VulkanProfiles) install( FILES ${CMAKE_SOURCE_DIR}/library/include/vulkan/debug/vulkan_profiles.hpp - ${CMAKE_SOURCE_DIR}/library/include/vulkan/android_vulkan_profiles.hpp DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/vulkan/ )