Skip to content

Commit

Permalink
further remove boost deps
Browse files Browse the repository at this point in the history
  • Loading branch information
cheneyuwu committed Oct 27, 2021
1 parent 0326248 commit 29a1c3a
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ ARG DEBIAN_FRONTEND=noninteractive

RUN apt update
RUN apt install -q -y curl gnupg2 lsb-release build-essential cmake
RUN apt install -q -y libeigen3-dev libboost-all-dev libomp-dev
RUN apt install -q -y libeigen3-dev libomp-dev
2 changes: 1 addition & 1 deletion Dockerfile.ROS2
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ ARG DEBIAN_FRONTEND=noninteractive
RUN apt update
RUN apt install -q -y curl gnupg2 lsb-release build-essential cmake
RUN apt install -q -y python3-colcon-core python3-colcon-common-extensions
RUN apt install -q -y libeigen3-dev libboost-all-dev libomp-dev
RUN apt install -q -y libeigen3-dev libomp-dev
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ STEAM (Simultaneous Trajectory Estimation and Mapping) Engine is an optimization

- Compiler with C++17 support and OpenMP
- CMake (>=3.16)
- Boost (>=1.71.0)
- Eigen (>=3.3.7)
- [lgmath (>=1.1.0)](https://github.com/utiasASRL/lgmath.git)
- (Optional) ROS2 Foxy or later (colcon+ament_cmake)
Expand Down
3 changes: 1 addition & 2 deletions samples/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,7 @@ set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
add_compile_options(-march=native -O3 -Wall -pedantic -Wno-unused-function)

# Boost and OpenMP
find_package(Boost 1.71.0 REQUIRED system)
# OpenMP
find_package(OpenMP REQUIRED)
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${OpenMP_C_FLAGS}")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${OpenMP_CXX_FLAGS}")
Expand Down

0 comments on commit 29a1c3a

Please sign in to comment.