From e36a747b43fb76c0cfc569e3f2b609bc1a0c03fa Mon Sep 17 00:00:00 2001 From: LTLA Date: Wed, 27 Mar 2024 23:33:46 -0700 Subject: [PATCH] Fixed the CMake install action to actually check tatami_stats. --- .github/workflows/check-install.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/check-install.yaml b/.github/workflows/check-install.yaml index 87c6d50..820a133 100644 --- a/.github/workflows/check-install.yaml +++ b/.github/workflows/check-install.yaml @@ -17,7 +17,7 @@ jobs: uses: lukka/get-cmake@latest - name: Configure the build - run: cmake -S . -B build -DTATAMI_TESTS=OFF + run: cmake -S . -B build -DTATAMI_STATS_TESTS=OFF - name: Install the library run: sudo cmake --install build @@ -30,7 +30,7 @@ jobs: cmake_minimum_required(VERSION 3.24) project(test_install) add_executable(whee source.cpp) - find_package(tatami_tatami) - target_link_libraries(whee tatami::tatami) + find_package(tatami_tatami_stats) + target_link_libraries(whee tatami::tatami_stats) EOF cd _downstream && cmake -S . -B build