Skip to content

Commit

Permalink
enhancement: no need to build abseil-cpp anymore
Browse files Browse the repository at this point in the history
  • Loading branch information
feixh committed Sep 4, 2019
1 parent 49c7af1 commit 6bc1672
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ include_directories(
enable_testing()
add_subdirectory(thirdparty/googletest)
add_subdirectory(thirdparty/gflags)
add_subdirectory(thirdparty/abseil-cpp)
# add_subdirectory(thirdparty/abseil-cpp)
if (BUILD_G2O)
link_directories(${PROJECT_SOURCE_DIR}/thirdparty/g2o/release/lib)
include_directories(${PROJECT_SOURCE_DIR}/thirdparty/g2o/release/include)
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,14 +54,14 @@ This software is built and tested on Ubuntu 16.04 and 18.04 with compiler g++ 7.
- [OpenCV][opencv]: Feature detection and tracking.
- [Eigen][eigen]: Linear algebra.
- [Pangolin][pangolin]: Lightweight visualization.
- [abseil-cpp][absl]: General utilities.
- [glog][glog]: Logging.
- [gflags][gflags]: Command-line options.
- [jsoncpp][jsoncpp]: Configuration.
- [pybind11][pybind11]: Python binding.
- (optional) [googletest][gtest]: Unit tests.
- (optional) [g2o][g2o]: To use pose graph optimization.
- (optional) [ROS][ros]: To use in live mode with ROS.
- (optional) [pybind11][pybind11]: Python binding.
<!-- - [abseil-cpp][absl]: General utilities. -->

Dependencies are included in the `thirdparty` directory.

Expand Down
2 changes: 1 addition & 1 deletion common/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ project(common)
# set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${PROJECT_SOURCE_DIR}/lib)

add_library(common STATIC utils.cpp)
target_link_libraries(common absl::str_format pthread)
target_link_libraries(common pthread)

# option(BUILD_COMMON_TESTS True)
# if (${BUILD_COMMON_TESTS})
Expand Down

0 comments on commit 6bc1672

Please sign in to comment.