mirror of
https://github.com/SOCI/soci.git
synced 2026-05-03 09:49:33 -05:00
b6d97ffa6f
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
14 lines
351 B
CMake
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)
|