Skip to content

Commit

Permalink
Bump required boost library version
Browse files Browse the repository at this point in the history
  • Loading branch information
scotty007 committed Apr 20, 2021
1 parent 8840d66 commit 22a9cf2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -51,15 +51,15 @@ if(${PLATFORM_MACOSX})
set(Boost_PYTHON_LIBRARY_RELEASE "/usr/local/lib/libboost_python27.dylib")
endif()
set(Boost_PYTHON_VERSION "2.7")
find_package(Boost 1.46 REQUIRED system thread python)
find_package(Boost 1.58 REQUIRED system thread python)
find_package(PkgConfig REQUIRED)
pkg_search_module(LIBXML2 REQUIRED libxml-2.0 libxml2)
pkg_search_module(GDK_PIXBUF REQUIRED gdk-pixbuf-2.0)
pkg_search_module(SDL2 REQUIRED sdl2)
pkg_search_module(DC1394_2 libdc1394-2)
pkg_check_modules(FFMPEG libswscale libavformat libavcodec libavutil libswresample)
set(Python_ADDITIONAL_VERSIONS 2.7)
find_package(PythonLibs REQUIRED)
find_package(PythonLibs REQUIRED) # NOTE: "PythonLibs" deprecated in CMake 3.12, use "Python" instead
pkg_search_module(PANGOFT2 REQUIRED pangoft2)
pkg_search_module(RSVG REQUIRED librsvg-2.0)
pkg_search_module(FONTCONFIG REQUIRED fontconfig)
Expand Down

0 comments on commit 22a9cf2

Please sign in to comment.