From 34a5d6bea1421e405d46431f1a3f400073b4ae33 Mon Sep 17 00:00:00 2001 From: Snider Date: Wed, 1 Oct 2025 18:23:43 +0100 Subject: [PATCH] Update CMake toolchain file path in Makefile Changed the CMake toolchain file path in the 'configure' target to use 'build/release/generators/conan_toolchain.cmake' instead of 'build/release/conan_toolchain.cmake' to match the new Conan output structure. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index b056b86c..3184aa23 100644 --- a/Makefile +++ b/Makefile @@ -145,7 +145,7 @@ test-debug: configure: @echo "Running Config: release" CONAN_HOME=$(CONAN_CACHE) conan install . --output-folder=build/release --build=missing -s build_type=$(BUILD_TYPE) - cmake -S . -B build/release -DCMAKE_TOOLCHAIN_FILE=build/release/conan_toolchain.cmake -DCMAKE_BUILD_TYPE=$(BUILD_TYPE) + cmake -S . -B build/release -DCMAKE_TOOLCHAIN_FILE=build/release/generators/conan_toolchain.cmake -DCMAKE_BUILD_TYPE=$(BUILD_TYPE) docs: configure @echo "Building Documentation"