Skip to content

Commit

Permalink
Merge pull request #133 from rcsoccersim/fix/boost-version-check
Browse files Browse the repository at this point in the history
add/update the minimum version check of boost to 1.44.0.
  • Loading branch information
hidehisaakiyama authored May 15, 2023
2 parents 6215f45 + 65e99f7 commit 1e39182
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ endif()
find_package(BISON REQUIRED)
find_package(FLEX REQUIRED)
#find_package(Boost COMPONENTS system filesystem REQUIRED)
find_package(Boost COMPONENTS system REQUIRED)
find_package(Boost 1.44.0 COMPONENTS system REQUIRED)

include(GNUInstallDirs)
include(CheckIncludeFileCXX)
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ AX_CXX_COMPILE_STDCXX_17(noext)
# check boost
##################################################

AX_BOOST_BASE([1.32.0])
AX_BOOST_BASE([1.44.0])
AX_BOOST_SYSTEM
CPPFLAGS="$CPPFLAGS $BOOST_CPPFLAGS"
LDFLAGS="$LDFLAGS $BOOST_LDFLAGS"
Expand Down

0 comments on commit 1e39182

Please sign in to comment.