Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/linux-clang.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ env:
CLANGXX_COMMAND: clang++-14
DOXYGEN_VER: 1.12.0
DOXYGEN_CACHE_REV: 0
BOOST_VER: 1_86_0
BOOST_VER_DOT: 1.86.0
BOOST_VER: 1_87_0
BOOST_VER_DOT: 1.87.0
BOOST_BOOTSTRAP_TOOLSET: clang
BOOST_TOOLSET: clang-14
BOOST_CACHE_REV: 0
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/linux-gcc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ env:
CONCURRENT_BUILD: 4
GCC_COMMAND: gcc-12
GXX_COMMAND: g++-12
BOOST_VER: 1_86_0
BOOST_VER_DOT: 1.86.0
BOOST_VER: 1_87_0
BOOST_VER_DOT: 1.87.0
BOOST_BOOTSTRAP_TOOLSET: gcc
BOOST_TOOLSET: gcc-12
BOOST_CACHE_REV: 0
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/windows-visualcpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ on:
env:
TETENGO_VER: 1.9.0
CONCURRENT_BUILD: 4
BOOST_VER: 1_86_0
BOOST_VER_DOT: 1.86.0
BOOST_VER: 1_87_0
BOOST_VER_DOT: 1.87.0
BOOST_TOOLSET: msvc-14.3
BOOST_CACHE_REV: 0
EMBEDTRANSFORM_CACHE_REV: 0
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ How to Build and Install
#### Requirements

- [Visual Studio 2022](https://visualstudio.microsoft.com/)
- [Boost C++ libraries 1.86.0](https://www.boost.org/)
- [Boost C++ libraries 1.87.0](https://www.boost.org/)
- [Doxygen 1.12.0](https://www.doxygen.nl/)
- [Graphviz](https://www.graphviz.org/)
- [WiX toolset 5.0.1](https://wixtoolset.org/)
Expand Down Expand Up @@ -142,7 +142,7 @@ Doxygen will output the documents into the directory `doc`.
[Clang 14](https://clang.llvm.org/),
[GCC 10](https://gcc.gnu.org/) or
[GCC 12](https://gcc.gnu.org/)
- [Boost C++ libraries 1.86.0](https://www.boost.org/)
- [Boost C++ libraries 1.87.0](https://www.boost.org/)
- [Doxygen 1.12.0](https://www.doxygen.nl/)
- [Graphviz](https://www.graphviz.org/)
- [include-what-you-use 0.15](https://include-what-you-use.org/) or
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ AC_SUBST([CFLAGS], "${CFLAGS} ${PTHREAD_CFLAGS}")
AC_SUBST([CXXFLAGS], "${CXXFLAGS} ${PTHREAD_CFLAGS}")
AC_SUBST([CC], "${PTHREAD_CC}")

AX_BOOST_BASE([1.86.0])
AX_BOOST_BASE([1.87.0])
AX_BOOST_UNIT_TEST_FRAMEWORK
AC_SUBST([LDFLAGS], "${LDFLAGS} ${BOOST_LDFLAGS}")
AC_SUBST([LIBS], "-lstdc++fs -lstdc++ ${LIBS}")
Expand Down
Loading