From 12f4947a8cb1681ed1086bae202331eed9b0f414 Mon Sep 17 00:00:00 2001 From: Dominik Drexler Date: Fri, 12 Apr 2024 16:58:25 +0200 Subject: [PATCH] added printing prefix path --- .github/workflows/integrationtests.yml | 2 +- CMakeLists.txt | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/integrationtests.yml b/.github/workflows/integrationtests.yml index 5919d421..843cf561 100644 --- a/.github/workflows/integrationtests.yml +++ b/.github/workflows/integrationtests.yml @@ -16,7 +16,7 @@ jobs: - name: Configure, Build, and Install Dependencies run: | cd tests/integration/dependencies - cmake -S . -B build -DCMAKE_INSTALL_PREFIX=$GITHUB_WORKSPACE/tests/integration/dependencies/installs + cmake -S . -B build -DCMAKE_INSTALL_PREFIX="$GITHUB_WORKSPACE/tests/integration/dependencies/installs" cmake --build build - name: Build and Test Project diff --git a/CMakeLists.txt b/CMakeLists.txt index 083f0ed2..3152f3ef 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -80,6 +80,7 @@ configure_ccache() # Boost # Find Boost headers only according to https://cmake.org/cmake/help/latest/module/FindBoost.html +message("Prefix path: ${CMAKE_PREFIX_PATH}") configure_boost() find_package(Boost ${BOOST_MIN_VERSION} REQUIRED PATHS ${CMAKE_PREFIX_PATH} NO_DEFAULT_PATH) if(Boost_FOUND)