Files
soci/cmake/dependencies/Boost.cmake
T
Mateusz Loskot b6d97ffa6f Implement new source tree layout #125
First set of changes incorporating new structure of source tree.
It also applies some of changes planned as part of buried headers feature #25

Work in progress, requires testing before merging into develop branch
2013-05-29 21:57:23 +01:00

14 lines
351 B
CMake

set(Boost_FIND_QUIETLY TRUE)
set(Boost_USE_MULTITHREADED ON)
find_package(Boost 1.33.1 COMPONENTS date_time)
if (NOT Boost_DATE_TIME_FOUND)
find_package(Boost 1.33.1)
endif()
set(Boost_RELEASE_VERSION
"${Boost_MAJOR_VERSION}.${Boost_MINOR_VERSION}.${Boost_SUBMINOR_VERSION}")
boost_external_report(Boost RELEASE_VERSION INCLUDE_DIR LIBRARIES)