Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
drexlerd committed Jan 5, 2024
1 parent 43d98cb commit 07dc920
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/benchmarks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@ jobs:
run: echo ${{ steps.install-boost.outputs.BOOST_ROOT }}

- name: Configure CMake
run: cmake -DCMAKE_BUILD_TYPE=Release -DENABLE_BENCHMARKING:BOOL=TRUE -DCMAKE_PREFIX_PATH="${BENCHMARK_INSTALL_DIR}" -S $GITHUB_WORKSPACE -B ${{runner.workspace}}/build
env:
BOOST_ROOT: ${{ steps.install-boost.outputs.BOOST_ROOT }}
run: cmake -DCMAKE_BUILD_TYPE=Release -DENABLE_BENCHMARKING:BOOL=TRUE -DCMAKE_PREFIX_PATH="${BENCHMARK_INSTALL_DIR};${{runner.workspace}}/boost_1_84_0" -S $GITHUB_WORKSPACE -B ${{runner.workspace}}/build
#env:
# BOOST_ROOT: ${{ steps.install-boost.outputs.BOOST_ROOT }}

- name: Build Loki
working-directory: ${{runner.workspace}}/build
Expand Down
3 changes: 2 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,8 @@ include("configure_ccache")
configure_ccache()

# Boost
configure_boost()
# configure_boost()
set(BOOST_MIN_VERSION "1.74.0")
find_package(Boost ${BOOST_MIN_VERSION} REQUIRED)
#include_directories("${PROJECT_SOURCE_DIR}/external/flatbuffers/include")

Expand Down

0 comments on commit 07dc920

Please sign in to comment.