Skip to content
Snippets Groups Projects
Commit ac9843fa authored by Lars Bilke's avatar Lars Bilke
Browse files

Fixed x64 Boost finding on Windows.

parent 294cca68
No related branches found
No related tags found
No related merge requests found
...@@ -38,7 +38,7 @@ IF(NOT Boost_INCLUDE_DIRS) ...@@ -38,7 +38,7 @@ IF(NOT Boost_INCLUDE_DIRS)
IF(WIN32) IF(WIN32)
SET(Boost_USE_STATIC_LIBS ON) SET(Boost_USE_STATIC_LIBS ON)
IF(NOT DEFINED BOOST_LIBRARYDIR) IF(NOT DEFINED BOOST_LIBRARYDIR)
SET(BOOST_LIBRARYDIR C:/boost/lib32-msvc-11.0;C:/boost/lib32-msvc-12.0) SET(BOOST_LIBRARYDIR "C:/boost/lib${BITS}-msvc-11.0;C:/boost/lib${BITS}-msvc-12.0")
ENDIF() ENDIF()
ENDIF() ENDIF()
FIND_PACKAGE(Boost 1.48.0 COMPONENTS ${BOOST_LIBS_TO_BUILD}) FIND_PACKAGE(Boost 1.48.0 COMPONENTS ${BOOST_LIBS_TO_BUILD})
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment