Skip to content

Commit

Permalink
Fixed Linux build problems.
Browse files Browse the repository at this point in the history
  • Loading branch information
ihedvall committed Jun 30, 2024
1 parent 2962990 commit 2aa9b9b
Show file tree
Hide file tree
Showing 18 changed files with 1,660 additions and 1,653 deletions.
4 changes: 2 additions & 2 deletions script/boost.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ if (NOT Boost_FOUND)
set(Boost_NO_WARN_NEW_VERSIONS ON)
set(Boost_DEBUG OFF)

find_package(Boost COMPONENTS filesystem system locale program_options)
find_package(Boost COMPONENTS locale)
message(STATUS "Boost Found (Try 1): " ${Boost_FOUND})
message(STATUS "Boost Version: " ${Boost_VERSION_STRING})
message(STATUS "Boost Include Dirs: " ${Boost_INCLUDE_DIRS})
Expand All @@ -17,7 +17,7 @@ if (NOT Boost_FOUND)
message(STATUS "Boost Root: " ${Boost_ROOT})
if (NOT Boost_FOUND)
set(Boost_ROOT ${COMP_DIR}/boost/latest)
find_package(Boost REQUIRED COMPONENTS filesystem system locale program_options)
find_package(Boost REQUIRED COMPONENTS locale)

message(STATUS "Boost Found (Try 2): " ${Boost_FOUND})
message(STATUS "Boost Version: " ${Boost_VERSION_STRING})
Expand Down
Loading

0 comments on commit 2aa9b9b

Please sign in to comment.