From b9bab7d59205eb8abb2093daa0f9d0f8fb9f608d Mon Sep 17 00:00:00 2001 From: BlaiseLebreton <59114761+BlaiseLebreton@users.noreply.github.com> Date: Mon, 17 Aug 2026 13:33:03 +0200 Subject: [PATCH] build: Add missing slash at end of include dir (for APPEND_PROJECT_NAME_TO_INCLUDEDIR) Signed-off-by: BlaiseLebreton <59114761+BlaiseLebreton@users.noreply.github.com> --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 2de06b80..2739d6b1 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -97,7 +97,7 @@ option(APPEND_PROJECT_NAME_TO_INCLUDEDIR include(GNUInstallDirs) set(BIN_INSTALL_DIR "${CMAKE_INSTALL_BINDIR}" CACHE PATH "Installation directory for binaries") -set(_include_dir "${CMAKE_INSTALL_INCLUDEDIR}") +set(_include_dir "${CMAKE_INSTALL_INCLUDEDIR}/") if(APPEND_PROJECT_NAME_TO_INCLUDEDIR) string(APPEND _include_dir "${PROJECT_NAME}/") endif()