From 1b09cb29a765905ccf8ca0867cbabf1a40e1dd59 Mon Sep 17 00:00:00 2001 From: Michel Hidalgo Date: Tue, 15 Oct 2024 18:47:08 -0300 Subject: [PATCH] Remove vcpkg reference in CPack config Signed-off-by: Michel Hidalgo --- cpp/CMakeLists.txt | 2 -- 1 file changed, 2 deletions(-) diff --git a/cpp/CMakeLists.txt b/cpp/CMakeLists.txt index eea9e12..0d118d6 100644 --- a/cpp/CMakeLists.txt +++ b/cpp/CMakeLists.txt @@ -278,7 +278,6 @@ install( # Define Variables needed by package config file set(PACKAGE_INSTALL_PREFIX /opt/spot-cpp-sdk) -set(DEP_INSTALL_PATH ${PACKAGE_INSTALL_PREFIX}/external) #this generates a relocatable config file for install, but it gets invoked at build time, #so the output has to be saved in a way that will not conflict with the export config @@ -327,6 +326,5 @@ if (UNIX) set(CPACK_RESOURCE_FILE_LICENSE "${CMAKE_CURRENT_SOURCE_DIR}/../LICENSE") set(CPACK_RESOURCE_FILE_README "${CMAKE_CURRENT_SOURCE_DIR}/README.md") set(CPACK_PACKAGING_INSTALL_PREFIX "${PACKAGE_INSTALL_PREFIX}") - set(CPACK_INSTALLED_DIRECTORIES "${VCPKG_INSTALLED_DIR}/${VCPKG_TARGET_TRIPLET}/;${DEP_INSTALL_PATH}/") include(CPack) endif()