Skip to content

Commit

Permalink
remove boost program_options
Browse files Browse the repository at this point in the history
  • Loading branch information
zhou13 committed Jan 22, 2019
1 parent 7afebc8 commit 60b5db9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions CMakeLists.txt
Expand Up @@ -10,7 +10,7 @@ option(BUILD_FREE_LICENSE "Only use libraries with permissive licenses" OFF)

list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_LIST_DIR}/cmake")
find_package(Eigen REQUIRED)
find_package(Boost COMPONENTS program_options REQUIRED)
find_package(Boost REQUIRED)

if (BUILD_GUROBI)
find_package(GUROBI REQUIRED)
Expand Down Expand Up @@ -139,7 +139,6 @@ add_executable(
target_link_libraries(
quadriflow
${TBB_LIBRARIES}
${Boost_LIBRARIES}
${LEMON_LIBRARIES}
${GUROBI_LIBRARIES}
)
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -92,7 +92,7 @@ cmake .. -DCMAKE_BUILD_TYPE=release -DBUILD_GUROBI=ON -DBUILD_LOG=ON
This override other solvers and should only be used for benchmark purpose.

## External Dependencies
* Boost `program_options`
* Boost
* Eigen
* OpenMP (optional in CMake)
* TBB (optional in CMake)
Expand Down

0 comments on commit 60b5db9

Please sign in to comment.