Skip to content

Commit

Permalink
Restore abseil with version before protobuf 21.12
Browse files Browse the repository at this point in the history
  • Loading branch information
twestley committed Sep 19, 2024
1 parent 8c303b6 commit 67e6db1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,9 @@ clean-gtest : FORCE
# -------------------------------------------------------------------
abseil : clean-abseil
git clone https://github.com/abseil/abseil-cpp.git
cd abseil-cpp && git checkout tags/20230802.0
mkdir -p abseil-cpp/build
cd abseil-cpp/build && cmake ..
cd abseil-cpp/build && cmake .. -DCMAKE_CXX_STANDARD=14
cd abseil-cpp/build && cmake --build . -j $(USE_CORES)

install-abseil : FORCE
Expand Down
3 changes: 0 additions & 3 deletions src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,6 @@ add_library(adakCore
GeometricDisconnect.cpp
SystemClock.cpp)

# Find GTest to get gmock
find_package(GTest REQUIRED)

# Newer versions of protobuf require abseil
find_package(absl REQUIRED)

Expand Down

0 comments on commit 67e6db1

Please sign in to comment.