From 59534ccab8f05fe580bf734d3d00d3a0c9c042b1 Mon Sep 17 00:00:00 2001 From: Scott M Anderson Date: Tue, 10 Feb 2026 12:10:16 -0700 Subject: [PATCH 1/2] cmake: use CMAKE_INSTALL_CMAKEDIR if already defined --- cmake/CMakeLists.txt | 5 ----- cmake/install.cmake | 4 ++++ 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/cmake/CMakeLists.txt b/cmake/CMakeLists.txt index f3b309e99bc3f..248c8ec1721f7 100644 --- a/cmake/CMakeLists.txt +++ b/cmake/CMakeLists.txt @@ -140,11 +140,6 @@ if(DEFINED XP_NAMESPACE) else() set(CMAKE_NAMESPACE protobuf) set(CMAKE_OPT_INSTALL TRUE) - if(NOT MSVC) - set(CMAKE_INSTALL_CMAKEDIR "${CMAKE_INSTALL_LIBDIR}/cmake/protobuf") - else() - set(CMAKE_INSTALL_CMAKEDIR "cmake") - endif() endif() add_definitions(-DGOOGLE_PROTOBUF_CMAKE_BUILD) diff --git a/cmake/install.cmake b/cmake/install.cmake index 8c216d43035cf..4ea2c373a0408 100644 --- a/cmake/install.cmake +++ b/cmake/install.cmake @@ -104,11 +104,15 @@ endforeach() # Install configuration set(_cmakedir_desc "Directory relative to CMAKE_INSTALL to install the cmake configuration files") +if(DEFINED CMAKE_INSTALL_CMAKEDIR) + set(CMAKE_INSTALL_CMAKEDIR "${CMAKE_INSTALL_CMAKEDIR}" CACHE STRING "${_cmakedir_desc}") +else() if(NOT MSVC) set(CMAKE_INSTALL_CMAKEDIR "${CMAKE_INSTALL_LIBDIR}/cmake/protobuf" CACHE STRING "${_cmakedir_desc}") else() set(CMAKE_INSTALL_CMAKEDIR "cmake" CACHE STRING "${_cmakedir_desc}") endif() +endif() mark_as_advanced(CMAKE_INSTALL_CMAKEDIR) configure_file(protobuf-config.cmake.in From fc78d6755fb0d2b24093a63d51f6216415f6ad85 Mon Sep 17 00:00:00 2001 From: Scott M Anderson Date: Tue, 10 Feb 2026 12:11:10 -0700 Subject: [PATCH 2/2] Update release tag to xpv3.14.0.5 --- .github/release-tag.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/release-tag.yml b/.github/release-tag.yml index 7da4bc0533627..31320a63f2a90 100644 --- a/.github/release-tag.yml +++ b/.github/release-tag.yml @@ -1,2 +1,2 @@ -tag: xpv3.14.0.4 -message: "xpro version 3.14.0.4 tag" +tag: xpv3.14.0.5 +message: "xpro version 3.14.0.5 tag"