update windows libs

This commit is contained in:
Bassem Girgis
2019-08-15 02:40:14 -05:00
parent 1034bbdd22
commit e6d0ddf4d4
535 changed files with 47085 additions and 12600 deletions

View File

@@ -0,0 +1,140 @@
# Copyright 2019 Peter Dimov
# Distributed under the Boost Software License, Version 1.0.
# (See accompanying file LICENSE_1_0.txt or copy at http://boost.org/LICENSE_1_0.txt)
# This CMake configuration file, installed as part of the Boost build
# and installation procedure done by `b2 install`, provides support
# for find_package(Boost).
#
# It's roughly, but not perfectly, compatible with the behavior
# of find_package(Boost) as provided by FindBoost.cmake.
#
# A typical use might be
#
# find_package(Boost 1.70 REQUIRED COMPONENTS filesystem regex PATHS C:/Boost)
#
# On success, the above invocation would define the targets Boost::headers,
# Boost::filesystem and Boost::regex. Boost::headers represents all
# header-only libraries. An alias, Boost::boost, for Boost::headers is
# provided for compatibility.
#
# Since Boost libraries can coexist in many variants - 32/64 bit,
# static/dynamic runtime, debug/release, the following variables can be used
# to control which variant is chosen:
#
# Boost_USE_DEBUG_LIBS: When OFF, disables debug libraries.
# Boost_USE_RELEASE_LIBS: When OFF, disables release libraries.
# Boost_USE_STATIC_LIBS: When ON, uses static Boost libraries; when OFF,
# uses shared Boost libraries; when not set, the
# default is to use shared when BUILD_SHARED_LIBS is
# ON, static otherwise.
# Boost_USE_STATIC_RUNTIME: When ON, uses Boost libraries linked against the
# static runtime. The default is shared runtime.
# Boost_USE_DEBUG_RUNTIME: When ON, uses Boost libraries linked against the
# debug runtime. When OFF, against the release
# runtime. The default is to use either.
# Boost_COMPILER: The compiler that has been used to build Boost,
# such as vc141, gcc7, clang37. The default is
# determined from CMAKE_CXX_COMPILER_ID.
message(STATUS "Found Boost ${Boost_VERSION} at ${Boost_DIR}")
# Output requested configuration (f.ex. "REQUIRED COMPONENTS filesystem")
if(Boost_FIND_QUIETLY)
set(_BOOST_CONFIG "${_BOOST_CONFIG} QUIET")
endif()
if(Boost_FIND_REQUIRED)
set(_BOOST_CONFIG "${_BOOST_CONFIG} REQUIRED")
endif()
foreach(__boost_comp IN LISTS Boost_FIND_COMPONENTS)
if(${Boost_FIND_REQUIRED_${__boost_comp}})
list(APPEND _BOOST_COMPONENTS ${__boost_comp})
else()
list(APPEND _BOOST_OPTIONAL_COMPONENTS ${__boost_comp})
endif()
endforeach()
if(_BOOST_COMPONENTS)
set(_BOOST_CONFIG "${_BOOST_CONFIG} COMPONENTS ${_BOOST_COMPONENTS}")
endif()
if(_BOOST_OPTIONAL_COMPONENTS)
set(_BOOST_CONFIG "${_BOOST_CONFIG} OPTIONAL_COMPONENTS ${_BOOST_OPTIONAL_COMPONENTS}")
endif()
if(_BOOST_CONFIG)
message(STATUS " Requested configuration:${_BOOST_CONFIG}")
endif()
unset(_BOOST_CONFIG)
unset(_BOOST_COMPONENTS)
unset(_BOOST_OPTIONAL_COMPONENTS)
# find_dependency doesn't forward arguments until 3.9, so we have to roll our own
macro(boost_find_dependency dep req)
set(_BOOST_QUIET)
if(Boost_FIND_QUIETLY)
set(_BOOST_QUIET QUIET)
endif()
set(_BOOST_REQUIRED)
if(${req} AND Boost_FIND_REQUIRED)
set(_BOOST_REQUIRED REQUIRED)
endif()
get_filename_component(_BOOST_CMAKEDIR "${CMAKE_CURRENT_LIST_DIR}/../" ABSOLUTE)
if(Boost_DEBUG)
message(STATUS "BoostConfig: find_package(boost_${dep} ${Boost_VERSION} EXACT CONFIG ${_BOOST_REQUIRED} ${_BOOST_QUIET} HINTS ${_BOOST_CMAKEDIR})")
endif()
find_package(boost_${dep} ${Boost_VERSION} EXACT CONFIG ${_BOOST_REQUIRED} ${_BOOST_QUIET} HINTS ${_BOOST_CMAKEDIR})
string(TOUPPER ${dep} _BOOST_DEP)
set(Boost_${_BOOST_DEP}_FOUND ${boost_${dep}_FOUND})
unset(_BOOST_REQUIRED)
unset(_BOOST_QUIET)
unset(_BOOST_CMAKEDIR)
unset(_BOOST_DEP)
endmacro()
# Find boost_headers
boost_find_dependency(headers 1)
if(NOT boost_headers_FOUND)
set(Boost_FOUND 0)
set(Boost_NOT_FOUND_MESSAGE "A required dependency, boost_headers, has not been found.")
return()
endif()
# Find components
foreach(__boost_comp IN LISTS Boost_FIND_COMPONENTS)
boost_find_dependency(${__boost_comp} ${Boost_FIND_REQUIRED_${__boost_comp}})
endforeach()
# Compatibility targets
if(NOT TARGET Boost::boost)
add_library(Boost::boost INTERFACE IMPORTED)
set_property(TARGET Boost::boost APPEND PROPERTY INTERFACE_LINK_LIBRARIES Boost::headers)
# All Boost:: targets already disable autolink
add_library(Boost::diagnostic_definitions INTERFACE IMPORTED)
add_library(Boost::disable_autolinking INTERFACE IMPORTED)
add_library(Boost::dynamic_linking INTERFACE IMPORTED)
endif()

View File

@@ -0,0 +1,12 @@
# Generated by Boost 1.70.0
set(PACKAGE_VERSION 1.70.0)
if(PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION)
set(PACKAGE_VERSION_COMPATIBLE FALSE)
else()
set(PACKAGE_VERSION_COMPATIBLE TRUE)
if(PACKAGE_FIND_VERSION STREQUAL PACKAGE_VERSION)
set(PACKAGE_VERSION_EXACT TRUE)
endif()
endif()

View File

@@ -0,0 +1,156 @@
# Copyright 2017-2019 Peter Dimov
# Distributed under the Boost Software License, Version 1.0.
# (See accompanying file LICENSE_1_0.txt or copy at http://boost.org/LICENSE_1_0.txt)
string(REGEX MATCHALL "[0-9]+" _BOOST_COMPILER_VERSION ${CMAKE_CXX_COMPILER_VERSION})
list(GET _BOOST_COMPILER_VERSION 0 _BOOST_COMPILER_VERSION_MAJOR)
list(GET _BOOST_COMPILER_VERSION 1 _BOOST_COMPILER_VERSION_MINOR)
if(BORLAND)
# Borland is unversioned
set(BOOST_DETECTED_TOOLSET "bcb")
set(_BOOST_COMPILER_VERSION_MAJOR)
set(_BOOST_COMPILER_VERSION_MINOR)
elseif(CMAKE_CXX_COMPILER_ID STREQUAL "AppleClang")
set(BOOST_DETECTED_TOOLSET "clang-darwin")
elseif(CMAKE_CXX_COMPILER_ID STREQUAL "Clang")
if(MSVC)
set(BOOST_DETECTED_TOOLSET "clangw")
else()
set(BOOST_DETECTED_TOOLSET "clang")
endif()
if(_BOOST_COMPILER_VERSION_MAJOR GREATER 3)
set(_BOOST_COMPILER_VERSION_MINOR)
endif()
elseif(CMAKE_CXX_COMPILER_ID STREQUAL "Intel")
if(WIN32)
# Intel-Win is unversioned
set(BOOST_DETECTED_TOOLSET "iw")
set(_BOOST_COMPILER_VERSION_MAJOR)
set(_BOOST_COMPILER_VERSION_MINOR)
else()
set(BOOST_DETECTED_TOOLSET "il")
endif()
elseif(CMAKE_CXX_COMPILER_ID STREQUAL "MIPSpro")
set(BOOST_DETECTED_TOOLSET "mp")
elseif(CMAKE_CXX_COMPILER_ID STREQUAL "SunPro")
set(BOOST_DETECTED_TOOLSET "sun")
elseif(CMAKE_CXX_COMPILER_ID STREQUAL "IBM XL")
set(BOOST_DETECTED_TOOLSET "xlc")
elseif(MINGW)
set(BOOST_DETECTED_TOOLSET "mgw")
if(_BOOST_COMPILER_VERSION_MAJOR GREATER 4)
set(_BOOST_COMPILER_VERSION_MINOR)
endif()
elseif(CMAKE_COMPILER_IS_GNUCXX)
if(APPLE)
set(BOOST_DETECTED_TOOLSET "xgcc")
else()
set(BOOST_DETECTED_TOOLSET "gcc")
endif()
if(_BOOST_COMPILER_VERSION_MAJOR GREATER 4)
set(_BOOST_COMPILER_VERSION_MINOR)
endif()
elseif(MSVC)
if((MSVC_VERSION GREATER 1919) AND (MSVC_VERSION LESS 1930))
set(BOOST_DETECTED_TOOLSET "vc142")
elseif((MSVC_VERSION GREATER 1909) AND (MSVC_VERSION LESS 1920))
set(BOOST_DETECTED_TOOLSET "vc141")
elseif(MSVC_VERSION EQUAL 1900)
set(BOOST_DETECTED_TOOLSET "vc140")
elseif(MSVC_VERSION EQUAL 1800)
set(BOOST_DETECTED_TOOLSET "vc120")
elseif(MSVC_VERSION EQUAL 1700)
set(BOOST_DETECTED_TOOLSET "vc110")
elseif(MSVC_VERSION EQUAL 1600)
set(BOOST_DETECTED_TOOLSET "vc100")
elseif(MSVC_VERSION EQUAL 1500)
set(BOOST_DETECTED_TOOLSET "vc90")
elseif(MSVC_VERSION EQUAL 1400)
set(BOOST_DETECTED_TOOLSET "vc80")
elseif(MSVC_VERSION EQUAL 1310)
set(BOOST_DETECTED_TOOLSET "vc71")
elseif(MSVC_VERSION EQUAL 1300)
set(BOOST_DETECTED_TOOLSET "vc7")
elseif(MSVC_VERSION EQUAL 1200)
set(BOOST_DETECTED_TOOLSET "vc6")
endif()
set(_BOOST_COMPILER_VERSION_MAJOR)
set(_BOOST_COMPILER_VERSION_MINOR)
endif()
# Add version
if(BOOST_DETECTED_TOOLSET)
set(BOOST_DETECTED_TOOLSET ${BOOST_DETECTED_TOOLSET}${_BOOST_COMPILER_VERSION_MAJOR}${_BOOST_COMPILER_VERSION_MINOR})
endif()
unset(_BOOST_COMPILER_VERSION)
unset(_BOOST_COMPILER_VERSION_MAJOR)
unset(_BOOST_COMPILER_VERSION_MINOR)
if("${BOOST_DETECTED_TOOLSET}" STREQUAL "")
# Unknown toolset
message(STATUS "Boost toolset is unknown (compiler ${CMAKE_CXX_COMPILER_ID} ${CMAKE_CXX_COMPILER_VERSION})")
elseif(Boost_DEBUG)
message(STATUS "Boost toolset is ${BOOST_DETECTED_TOOLSET} (${CMAKE_CXX_COMPILER_ID} ${CMAKE_CXX_COMPILER_VERSION})")
endif()

View File

@@ -0,0 +1,12 @@
# Generated by Boost 1.70.0
set(PACKAGE_VERSION 1.70.0)
if(PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION)
set(PACKAGE_VERSION_COMPATIBLE FALSE)
else()
set(PACKAGE_VERSION_COMPATIBLE TRUE)
if(PACKAGE_FIND_VERSION STREQUAL PACKAGE_VERSION)
set(PACKAGE_VERSION_EXACT TRUE)
endif()
endif()

View File

@@ -0,0 +1,98 @@
# Generated by Boost 1.70.0
if(TARGET Boost::atomic)
return()
endif()
message(STATUS "Found boost_atomic ${boost_atomic_VERSION} at ${boost_atomic_DIR}")
# Compute the include and library directories relative to this file.
get_filename_component(_BOOST_CMAKEDIR "${CMAKE_CURRENT_LIST_DIR}/../" ABSOLUTE)
get_filename_component(_BOOST_INCLUDEDIR "${_BOOST_CMAKEDIR}/../../include/boost-1_70/" ABSOLUTE)
get_filename_component(_BOOST_LIBDIR "${_BOOST_CMAKEDIR}/../" ABSOLUTE)
# Create imported target Boost::atomic
add_library(Boost::atomic UNKNOWN IMPORTED)
set_target_properties(Boost::atomic PROPERTIES
INTERFACE_INCLUDE_DIRECTORIES "${_BOOST_INCLUDEDIR}"
INTERFACE_COMPILE_DEFINITIONS "BOOST_ALL_NO_LIB"
)
include(${CMAKE_CURRENT_LIST_DIR}/../BoostDetectToolset-1.70.0.cmake)
if(Boost_DEBUG)
message(STATUS "Scanning ${CMAKE_CURRENT_LIST_DIR}/libboost_atomic-variant*.cmake")
endif()
file(GLOB __boost_variants "${CMAKE_CURRENT_LIST_DIR}/libboost_atomic-variant*.cmake")
macro(_BOOST_SKIPPED fname reason)
if(Boost_DEBUG)
message(STATUS " ... skipped ${fname} (${reason})")
endif()
list(APPEND __boost_skipped "${fname} (${reason})")
endmacro()
foreach(f IN LISTS __boost_variants)
if(Boost_DEBUG)
message(STATUS " Including ${f}")
endif()
include(${f})
endforeach()
unset(_BOOST_LIBDIR)
unset(_BOOST_INCLUDEDIR)
unset(_BOOST_CMAKEDIR)
get_target_property(__boost_configs Boost::atomic IMPORTED_CONFIGURATIONS)
if(__boost_variants AND NOT __boost_configs)
message(STATUS "No suitable boost_atomic variant has been identified!")
if(NOT Boost_DEBUG)
foreach(s IN LISTS __boost_skipped)
message(STATUS " ${s}")
endforeach()
endif()
set(boost_atomic_FOUND 0)
set(boost_atomic_NOT_FOUND_MESSAGE "No suitable build variant has been found.")
unset(__boost_skipped)
unset(__boost_configs)
unset(__boost_variants)
unset(_BOOST_ATOMIC_DEPS)
return()
endif()
unset(__boost_skipped)
unset(__boost_configs)
unset(__boost_variants)
if(_BOOST_ATOMIC_DEPS)
list(REMOVE_DUPLICATES _BOOST_ATOMIC_DEPS)
message(STATUS "Adding boost_atomic dependencies: ${_BOOST_ATOMIC_DEPS}")
endif()
foreach(dep_boost_atomic IN LISTS _BOOST_ATOMIC_DEPS)
set(_BOOST_QUIET)
if(boost_atomic_FIND_QUIETLY)
set(_BOOST_QUIET QUIET)
endif()
set(_BOOST_REQUIRED)
if(boost_atomic_FIND_REQUIRED)
set(_BOOST_REQUIRED REQUIRED)
endif()
get_filename_component(_BOOST_CMAKEDIR "${CMAKE_CURRENT_LIST_DIR}/../" ABSOLUTE)
find_package(boost_${dep_boost_atomic} 1.70.0 EXACT CONFIG ${_BOOST_REQUIRED} ${_BOOST_QUIET} HINTS ${_BOOST_CMAKEDIR})
set_property(TARGET Boost::atomic APPEND PROPERTY INTERFACE_LINK_LIBRARIES Boost::${dep_boost_atomic})
unset(_BOOST_QUIET)
unset(_BOOST_REQUIRED)
unset(_BOOST_CMAKEDIR)
if(NOT boost_${dep_boost_atomic}_FOUND)
set(boost_atomic_FOUND 0)
set(boost_atomic_NOT_FOUND_MESSAGE "A required dependency, boost_${dep_boost_atomic}, has not been found.")
unset(_BOOST_ATOMIC_DEPS)
return()
endif()
endforeach()
unset(_BOOST_ATOMIC_DEPS)

View File

@@ -0,0 +1,72 @@
# Generated by Boost 1.70.0
# address-model=64
if(CMAKE_SIZEOF_VOID_P EQUAL 4)
_BOOST_SKIPPED("boost_atomic-vc142-mt-gd-x64-1_70.lib" "64 bit, need 32")
return()
endif()
# layout=versioned
# toolset=vc142
if(Boost_COMPILER AND NOT Boost_COMPILER STREQUAL "vc142")
_BOOST_SKIPPED("boost_atomic-vc142-mt-gd-x64-1_70.lib" "vc142, Boost_COMPILER=${Boost_COMPILER}")
return()
endif()
if(BOOST_DETECTED_TOOLSET AND NOT BOOST_DETECTED_TOOLSET STREQUAL "vc142")
_BOOST_SKIPPED("boost_atomic-vc142-mt-gd-x64-1_70.lib" "vc142, detected ${BOOST_DETECTED_TOOLSET}, set Boost_COMPILER to override")
return()
endif()
# link=shared
if(NOT "${Boost_USE_STATIC_LIBS}" STREQUAL "" AND Boost_USE_STATIC_LIBS)
_BOOST_SKIPPED("boost_atomic-vc142-mt-gd-x64-1_70.lib" "shared, Boost_USE_STATIC_LIBS=${Boost_USE_STATIC_LIBS}")
return()
endif()
if(NOT BUILD_SHARED_LIBS)
_BOOST_SKIPPED("boost_atomic-vc142-mt-gd-x64-1_70.lib" "shared, BUILD_SHARED_LIBS not ON, set Boost_USE_STATIC_LIBS=OFF to override")
return()
endif()
# runtime-link=shared
if(Boost_USE_STATIC_RUNTIME)
_BOOST_SKIPPED("boost_atomic-vc142-mt-gd-x64-1_70.lib" "shared runtime, Boost_USE_STATIC_RUNTIME=${Boost_USE_STATIC_RUNTIME}")
return()
endif()
# runtime-debugging=on
if(NOT "${Boost_USE_DEBUG_RUNTIME}" STREQUAL "" AND NOT Boost_USE_DEBUG_RUNTIME)
_BOOST_SKIPPED("boost_atomic-vc142-mt-gd-x64-1_70.lib" "debug runtime, Boost_USE_DEBUG_RUNTIME=${Boost_USE_DEBUG_RUNTIME}")
return()
endif()
# threading=multi
# variant=debug
if(NOT "${Boost_USE_DEBUG_LIBS}" STREQUAL "" AND NOT Boost_USE_DEBUG_LIBS)
_BOOST_SKIPPED("boost_atomic-vc142-mt-gd-x64-1_70.lib" "debug, Boost_USE_DEBUG_LIBS=${Boost_USE_DEBUG_LIBS}")
return()
endif()
message(STATUS " boost_atomic-vc142-mt-gd-x64-1_70.lib")
# Target file name: boost_atomic-vc142-mt-gd-x64-1_70.lib
set_property(TARGET Boost::atomic APPEND PROPERTY IMPORTED_CONFIGURATIONS DEBUG)
set_target_properties(Boost::atomic PROPERTIES
IMPORTED_LINK_INTERFACE_LANGUAGES_DEBUG CXX
IMPORTED_LOCATION_DEBUG "${_BOOST_LIBDIR}/boost_atomic-vc142-mt-gd-x64-1_70.lib"
)
set_target_properties(Boost::atomic PROPERTIES
INTERFACE_COMPILE_DEFINITIONS "BOOST_ATOMIC_DYN_LINK"
)
list(APPEND _BOOST_ATOMIC_DEPS headers)

View File

@@ -0,0 +1,72 @@
# Generated by Boost 1.70.0
# address-model=64
if(CMAKE_SIZEOF_VOID_P EQUAL 4)
_BOOST_SKIPPED("boost_atomic-vc142-mt-x64-1_70.lib" "64 bit, need 32")
return()
endif()
# layout=versioned
# toolset=vc142
if(Boost_COMPILER AND NOT Boost_COMPILER STREQUAL "vc142")
_BOOST_SKIPPED("boost_atomic-vc142-mt-x64-1_70.lib" "vc142, Boost_COMPILER=${Boost_COMPILER}")
return()
endif()
if(BOOST_DETECTED_TOOLSET AND NOT BOOST_DETECTED_TOOLSET STREQUAL "vc142")
_BOOST_SKIPPED("boost_atomic-vc142-mt-x64-1_70.lib" "vc142, detected ${BOOST_DETECTED_TOOLSET}, set Boost_COMPILER to override")
return()
endif()
# link=shared
if(NOT "${Boost_USE_STATIC_LIBS}" STREQUAL "" AND Boost_USE_STATIC_LIBS)
_BOOST_SKIPPED("boost_atomic-vc142-mt-x64-1_70.lib" "shared, Boost_USE_STATIC_LIBS=${Boost_USE_STATIC_LIBS}")
return()
endif()
if(NOT BUILD_SHARED_LIBS)
_BOOST_SKIPPED("boost_atomic-vc142-mt-x64-1_70.lib" "shared, BUILD_SHARED_LIBS not ON, set Boost_USE_STATIC_LIBS=OFF to override")
return()
endif()
# runtime-link=shared
if(Boost_USE_STATIC_RUNTIME)
_BOOST_SKIPPED("boost_atomic-vc142-mt-x64-1_70.lib" "shared runtime, Boost_USE_STATIC_RUNTIME=${Boost_USE_STATIC_RUNTIME}")
return()
endif()
# runtime-debugging=off
if(Boost_USE_DEBUG_RUNTIME)
_BOOST_SKIPPED("boost_atomic-vc142-mt-x64-1_70.lib" "release runtime, Boost_USE_DEBUG_RUNTIME=${Boost_USE_DEBUG_RUNTIME}")
return()
endif()
# threading=multi
# variant=release
if(NOT "${Boost_USE_RELEASE_LIBS}" STREQUAL "" AND NOT Boost_USE_RELEASE_LIBS)
_BOOST_SKIPPED("boost_atomic-vc142-mt-x64-1_70.lib" "release, Boost_USE_RELEASE_LIBS=${Boost_USE_RELEASE_LIBS}")
return()
endif()
message(STATUS " boost_atomic-vc142-mt-x64-1_70.lib")
# Target file name: boost_atomic-vc142-mt-x64-1_70.lib
set_property(TARGET Boost::atomic APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE)
set_target_properties(Boost::atomic PROPERTIES
IMPORTED_LINK_INTERFACE_LANGUAGES_RELEASE CXX
IMPORTED_LOCATION_RELEASE "${_BOOST_LIBDIR}/boost_atomic-vc142-mt-x64-1_70.lib"
)
set_target_properties(Boost::atomic PROPERTIES
INTERFACE_COMPILE_DEFINITIONS "BOOST_ATOMIC_DYN_LINK"
)
list(APPEND _BOOST_ATOMIC_DEPS headers)

View File

@@ -0,0 +1,12 @@
# Generated by Boost 1.70.0
set(PACKAGE_VERSION 1.70.0)
if(PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION)
set(PACKAGE_VERSION_COMPATIBLE FALSE)
else()
set(PACKAGE_VERSION_COMPATIBLE TRUE)
if(PACKAGE_FIND_VERSION STREQUAL PACKAGE_VERSION)
set(PACKAGE_VERSION_EXACT TRUE)
endif()
endif()

View File

@@ -0,0 +1,98 @@
# Generated by Boost 1.70.0
if(TARGET Boost::chrono)
return()
endif()
message(STATUS "Found boost_chrono ${boost_chrono_VERSION} at ${boost_chrono_DIR}")
# Compute the include and library directories relative to this file.
get_filename_component(_BOOST_CMAKEDIR "${CMAKE_CURRENT_LIST_DIR}/../" ABSOLUTE)
get_filename_component(_BOOST_INCLUDEDIR "${_BOOST_CMAKEDIR}/../../include/boost-1_70/" ABSOLUTE)
get_filename_component(_BOOST_LIBDIR "${_BOOST_CMAKEDIR}/../" ABSOLUTE)
# Create imported target Boost::chrono
add_library(Boost::chrono UNKNOWN IMPORTED)
set_target_properties(Boost::chrono PROPERTIES
INTERFACE_INCLUDE_DIRECTORIES "${_BOOST_INCLUDEDIR}"
INTERFACE_COMPILE_DEFINITIONS "BOOST_ALL_NO_LIB"
)
include(${CMAKE_CURRENT_LIST_DIR}/../BoostDetectToolset-1.70.0.cmake)
if(Boost_DEBUG)
message(STATUS "Scanning ${CMAKE_CURRENT_LIST_DIR}/libboost_chrono-variant*.cmake")
endif()
file(GLOB __boost_variants "${CMAKE_CURRENT_LIST_DIR}/libboost_chrono-variant*.cmake")
macro(_BOOST_SKIPPED fname reason)
if(Boost_DEBUG)
message(STATUS " ... skipped ${fname} (${reason})")
endif()
list(APPEND __boost_skipped "${fname} (${reason})")
endmacro()
foreach(f IN LISTS __boost_variants)
if(Boost_DEBUG)
message(STATUS " Including ${f}")
endif()
include(${f})
endforeach()
unset(_BOOST_LIBDIR)
unset(_BOOST_INCLUDEDIR)
unset(_BOOST_CMAKEDIR)
get_target_property(__boost_configs Boost::chrono IMPORTED_CONFIGURATIONS)
if(__boost_variants AND NOT __boost_configs)
message(STATUS "No suitable boost_chrono variant has been identified!")
if(NOT Boost_DEBUG)
foreach(s IN LISTS __boost_skipped)
message(STATUS " ${s}")
endforeach()
endif()
set(boost_chrono_FOUND 0)
set(boost_chrono_NOT_FOUND_MESSAGE "No suitable build variant has been found.")
unset(__boost_skipped)
unset(__boost_configs)
unset(__boost_variants)
unset(_BOOST_CHRONO_DEPS)
return()
endif()
unset(__boost_skipped)
unset(__boost_configs)
unset(__boost_variants)
if(_BOOST_CHRONO_DEPS)
list(REMOVE_DUPLICATES _BOOST_CHRONO_DEPS)
message(STATUS "Adding boost_chrono dependencies: ${_BOOST_CHRONO_DEPS}")
endif()
foreach(dep_boost_chrono IN LISTS _BOOST_CHRONO_DEPS)
set(_BOOST_QUIET)
if(boost_chrono_FIND_QUIETLY)
set(_BOOST_QUIET QUIET)
endif()
set(_BOOST_REQUIRED)
if(boost_chrono_FIND_REQUIRED)
set(_BOOST_REQUIRED REQUIRED)
endif()
get_filename_component(_BOOST_CMAKEDIR "${CMAKE_CURRENT_LIST_DIR}/../" ABSOLUTE)
find_package(boost_${dep_boost_chrono} 1.70.0 EXACT CONFIG ${_BOOST_REQUIRED} ${_BOOST_QUIET} HINTS ${_BOOST_CMAKEDIR})
set_property(TARGET Boost::chrono APPEND PROPERTY INTERFACE_LINK_LIBRARIES Boost::${dep_boost_chrono})
unset(_BOOST_QUIET)
unset(_BOOST_REQUIRED)
unset(_BOOST_CMAKEDIR)
if(NOT boost_${dep_boost_chrono}_FOUND)
set(boost_chrono_FOUND 0)
set(boost_chrono_NOT_FOUND_MESSAGE "A required dependency, boost_${dep_boost_chrono}, has not been found.")
unset(_BOOST_CHRONO_DEPS)
return()
endif()
endforeach()
unset(_BOOST_CHRONO_DEPS)

View File

@@ -0,0 +1,72 @@
# Generated by Boost 1.70.0
# address-model=64
if(CMAKE_SIZEOF_VOID_P EQUAL 4)
_BOOST_SKIPPED("boost_chrono-vc142-mt-gd-x64-1_70.lib" "64 bit, need 32")
return()
endif()
# layout=versioned
# toolset=vc142
if(Boost_COMPILER AND NOT Boost_COMPILER STREQUAL "vc142")
_BOOST_SKIPPED("boost_chrono-vc142-mt-gd-x64-1_70.lib" "vc142, Boost_COMPILER=${Boost_COMPILER}")
return()
endif()
if(BOOST_DETECTED_TOOLSET AND NOT BOOST_DETECTED_TOOLSET STREQUAL "vc142")
_BOOST_SKIPPED("boost_chrono-vc142-mt-gd-x64-1_70.lib" "vc142, detected ${BOOST_DETECTED_TOOLSET}, set Boost_COMPILER to override")
return()
endif()
# link=shared
if(NOT "${Boost_USE_STATIC_LIBS}" STREQUAL "" AND Boost_USE_STATIC_LIBS)
_BOOST_SKIPPED("boost_chrono-vc142-mt-gd-x64-1_70.lib" "shared, Boost_USE_STATIC_LIBS=${Boost_USE_STATIC_LIBS}")
return()
endif()
if(NOT BUILD_SHARED_LIBS)
_BOOST_SKIPPED("boost_chrono-vc142-mt-gd-x64-1_70.lib" "shared, BUILD_SHARED_LIBS not ON, set Boost_USE_STATIC_LIBS=OFF to override")
return()
endif()
# runtime-link=shared
if(Boost_USE_STATIC_RUNTIME)
_BOOST_SKIPPED("boost_chrono-vc142-mt-gd-x64-1_70.lib" "shared runtime, Boost_USE_STATIC_RUNTIME=${Boost_USE_STATIC_RUNTIME}")
return()
endif()
# runtime-debugging=on
if(NOT "${Boost_USE_DEBUG_RUNTIME}" STREQUAL "" AND NOT Boost_USE_DEBUG_RUNTIME)
_BOOST_SKIPPED("boost_chrono-vc142-mt-gd-x64-1_70.lib" "debug runtime, Boost_USE_DEBUG_RUNTIME=${Boost_USE_DEBUG_RUNTIME}")
return()
endif()
# threading=multi
# variant=debug
if(NOT "${Boost_USE_DEBUG_LIBS}" STREQUAL "" AND NOT Boost_USE_DEBUG_LIBS)
_BOOST_SKIPPED("boost_chrono-vc142-mt-gd-x64-1_70.lib" "debug, Boost_USE_DEBUG_LIBS=${Boost_USE_DEBUG_LIBS}")
return()
endif()
message(STATUS " boost_chrono-vc142-mt-gd-x64-1_70.lib")
# Target file name: boost_chrono-vc142-mt-gd-x64-1_70.lib
set_property(TARGET Boost::chrono APPEND PROPERTY IMPORTED_CONFIGURATIONS DEBUG)
set_target_properties(Boost::chrono PROPERTIES
IMPORTED_LINK_INTERFACE_LANGUAGES_DEBUG CXX
IMPORTED_LOCATION_DEBUG "${_BOOST_LIBDIR}/boost_chrono-vc142-mt-gd-x64-1_70.lib"
)
set_target_properties(Boost::chrono PROPERTIES
INTERFACE_COMPILE_DEFINITIONS "BOOST_CHRONO_DYN_LINK"
)
list(APPEND _BOOST_CHRONO_DEPS headers)

View File

@@ -0,0 +1,72 @@
# Generated by Boost 1.70.0
# address-model=64
if(CMAKE_SIZEOF_VOID_P EQUAL 4)
_BOOST_SKIPPED("boost_chrono-vc142-mt-x64-1_70.lib" "64 bit, need 32")
return()
endif()
# layout=versioned
# toolset=vc142
if(Boost_COMPILER AND NOT Boost_COMPILER STREQUAL "vc142")
_BOOST_SKIPPED("boost_chrono-vc142-mt-x64-1_70.lib" "vc142, Boost_COMPILER=${Boost_COMPILER}")
return()
endif()
if(BOOST_DETECTED_TOOLSET AND NOT BOOST_DETECTED_TOOLSET STREQUAL "vc142")
_BOOST_SKIPPED("boost_chrono-vc142-mt-x64-1_70.lib" "vc142, detected ${BOOST_DETECTED_TOOLSET}, set Boost_COMPILER to override")
return()
endif()
# link=shared
if(NOT "${Boost_USE_STATIC_LIBS}" STREQUAL "" AND Boost_USE_STATIC_LIBS)
_BOOST_SKIPPED("boost_chrono-vc142-mt-x64-1_70.lib" "shared, Boost_USE_STATIC_LIBS=${Boost_USE_STATIC_LIBS}")
return()
endif()
if(NOT BUILD_SHARED_LIBS)
_BOOST_SKIPPED("boost_chrono-vc142-mt-x64-1_70.lib" "shared, BUILD_SHARED_LIBS not ON, set Boost_USE_STATIC_LIBS=OFF to override")
return()
endif()
# runtime-link=shared
if(Boost_USE_STATIC_RUNTIME)
_BOOST_SKIPPED("boost_chrono-vc142-mt-x64-1_70.lib" "shared runtime, Boost_USE_STATIC_RUNTIME=${Boost_USE_STATIC_RUNTIME}")
return()
endif()
# runtime-debugging=off
if(Boost_USE_DEBUG_RUNTIME)
_BOOST_SKIPPED("boost_chrono-vc142-mt-x64-1_70.lib" "release runtime, Boost_USE_DEBUG_RUNTIME=${Boost_USE_DEBUG_RUNTIME}")
return()
endif()
# threading=multi
# variant=release
if(NOT "${Boost_USE_RELEASE_LIBS}" STREQUAL "" AND NOT Boost_USE_RELEASE_LIBS)
_BOOST_SKIPPED("boost_chrono-vc142-mt-x64-1_70.lib" "release, Boost_USE_RELEASE_LIBS=${Boost_USE_RELEASE_LIBS}")
return()
endif()
message(STATUS " boost_chrono-vc142-mt-x64-1_70.lib")
# Target file name: boost_chrono-vc142-mt-x64-1_70.lib
set_property(TARGET Boost::chrono APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE)
set_target_properties(Boost::chrono PROPERTIES
IMPORTED_LINK_INTERFACE_LANGUAGES_RELEASE CXX
IMPORTED_LOCATION_RELEASE "${_BOOST_LIBDIR}/boost_chrono-vc142-mt-x64-1_70.lib"
)
set_target_properties(Boost::chrono PROPERTIES
INTERFACE_COMPILE_DEFINITIONS "BOOST_CHRONO_DYN_LINK"
)
list(APPEND _BOOST_CHRONO_DEPS headers)

View File

@@ -0,0 +1,12 @@
# Generated by Boost 1.70.0
set(PACKAGE_VERSION 1.70.0)
if(PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION)
set(PACKAGE_VERSION_COMPATIBLE FALSE)
else()
set(PACKAGE_VERSION_COMPATIBLE TRUE)
if(PACKAGE_FIND_VERSION STREQUAL PACKAGE_VERSION)
set(PACKAGE_VERSION_EXACT TRUE)
endif()
endif()

View File

@@ -0,0 +1,98 @@
# Generated by Boost 1.70.0
if(TARGET Boost::container)
return()
endif()
message(STATUS "Found boost_container ${boost_container_VERSION} at ${boost_container_DIR}")
# Compute the include and library directories relative to this file.
get_filename_component(_BOOST_CMAKEDIR "${CMAKE_CURRENT_LIST_DIR}/../" ABSOLUTE)
get_filename_component(_BOOST_INCLUDEDIR "${_BOOST_CMAKEDIR}/../../include/boost-1_70/" ABSOLUTE)
get_filename_component(_BOOST_LIBDIR "${_BOOST_CMAKEDIR}/../" ABSOLUTE)
# Create imported target Boost::container
add_library(Boost::container UNKNOWN IMPORTED)
set_target_properties(Boost::container PROPERTIES
INTERFACE_INCLUDE_DIRECTORIES "${_BOOST_INCLUDEDIR}"
INTERFACE_COMPILE_DEFINITIONS "BOOST_ALL_NO_LIB"
)
include(${CMAKE_CURRENT_LIST_DIR}/../BoostDetectToolset-1.70.0.cmake)
if(Boost_DEBUG)
message(STATUS "Scanning ${CMAKE_CURRENT_LIST_DIR}/libboost_container-variant*.cmake")
endif()
file(GLOB __boost_variants "${CMAKE_CURRENT_LIST_DIR}/libboost_container-variant*.cmake")
macro(_BOOST_SKIPPED fname reason)
if(Boost_DEBUG)
message(STATUS " ... skipped ${fname} (${reason})")
endif()
list(APPEND __boost_skipped "${fname} (${reason})")
endmacro()
foreach(f IN LISTS __boost_variants)
if(Boost_DEBUG)
message(STATUS " Including ${f}")
endif()
include(${f})
endforeach()
unset(_BOOST_LIBDIR)
unset(_BOOST_INCLUDEDIR)
unset(_BOOST_CMAKEDIR)
get_target_property(__boost_configs Boost::container IMPORTED_CONFIGURATIONS)
if(__boost_variants AND NOT __boost_configs)
message(STATUS "No suitable boost_container variant has been identified!")
if(NOT Boost_DEBUG)
foreach(s IN LISTS __boost_skipped)
message(STATUS " ${s}")
endforeach()
endif()
set(boost_container_FOUND 0)
set(boost_container_NOT_FOUND_MESSAGE "No suitable build variant has been found.")
unset(__boost_skipped)
unset(__boost_configs)
unset(__boost_variants)
unset(_BOOST_CONTAINER_DEPS)
return()
endif()
unset(__boost_skipped)
unset(__boost_configs)
unset(__boost_variants)
if(_BOOST_CONTAINER_DEPS)
list(REMOVE_DUPLICATES _BOOST_CONTAINER_DEPS)
message(STATUS "Adding boost_container dependencies: ${_BOOST_CONTAINER_DEPS}")
endif()
foreach(dep_boost_container IN LISTS _BOOST_CONTAINER_DEPS)
set(_BOOST_QUIET)
if(boost_container_FIND_QUIETLY)
set(_BOOST_QUIET QUIET)
endif()
set(_BOOST_REQUIRED)
if(boost_container_FIND_REQUIRED)
set(_BOOST_REQUIRED REQUIRED)
endif()
get_filename_component(_BOOST_CMAKEDIR "${CMAKE_CURRENT_LIST_DIR}/../" ABSOLUTE)
find_package(boost_${dep_boost_container} 1.70.0 EXACT CONFIG ${_BOOST_REQUIRED} ${_BOOST_QUIET} HINTS ${_BOOST_CMAKEDIR})
set_property(TARGET Boost::container APPEND PROPERTY INTERFACE_LINK_LIBRARIES Boost::${dep_boost_container})
unset(_BOOST_QUIET)
unset(_BOOST_REQUIRED)
unset(_BOOST_CMAKEDIR)
if(NOT boost_${dep_boost_container}_FOUND)
set(boost_container_FOUND 0)
set(boost_container_NOT_FOUND_MESSAGE "A required dependency, boost_${dep_boost_container}, has not been found.")
unset(_BOOST_CONTAINER_DEPS)
return()
endif()
endforeach()
unset(_BOOST_CONTAINER_DEPS)

View File

@@ -0,0 +1,72 @@
# Generated by Boost 1.70.0
# address-model=64
if(CMAKE_SIZEOF_VOID_P EQUAL 4)
_BOOST_SKIPPED("boost_container-vc142-mt-gd-x64-1_70.lib" "64 bit, need 32")
return()
endif()
# layout=versioned
# toolset=vc142
if(Boost_COMPILER AND NOT Boost_COMPILER STREQUAL "vc142")
_BOOST_SKIPPED("boost_container-vc142-mt-gd-x64-1_70.lib" "vc142, Boost_COMPILER=${Boost_COMPILER}")
return()
endif()
if(BOOST_DETECTED_TOOLSET AND NOT BOOST_DETECTED_TOOLSET STREQUAL "vc142")
_BOOST_SKIPPED("boost_container-vc142-mt-gd-x64-1_70.lib" "vc142, detected ${BOOST_DETECTED_TOOLSET}, set Boost_COMPILER to override")
return()
endif()
# link=shared
if(NOT "${Boost_USE_STATIC_LIBS}" STREQUAL "" AND Boost_USE_STATIC_LIBS)
_BOOST_SKIPPED("boost_container-vc142-mt-gd-x64-1_70.lib" "shared, Boost_USE_STATIC_LIBS=${Boost_USE_STATIC_LIBS}")
return()
endif()
if(NOT BUILD_SHARED_LIBS)
_BOOST_SKIPPED("boost_container-vc142-mt-gd-x64-1_70.lib" "shared, BUILD_SHARED_LIBS not ON, set Boost_USE_STATIC_LIBS=OFF to override")
return()
endif()
# runtime-link=shared
if(Boost_USE_STATIC_RUNTIME)
_BOOST_SKIPPED("boost_container-vc142-mt-gd-x64-1_70.lib" "shared runtime, Boost_USE_STATIC_RUNTIME=${Boost_USE_STATIC_RUNTIME}")
return()
endif()
# runtime-debugging=on
if(NOT "${Boost_USE_DEBUG_RUNTIME}" STREQUAL "" AND NOT Boost_USE_DEBUG_RUNTIME)
_BOOST_SKIPPED("boost_container-vc142-mt-gd-x64-1_70.lib" "debug runtime, Boost_USE_DEBUG_RUNTIME=${Boost_USE_DEBUG_RUNTIME}")
return()
endif()
# threading=multi
# variant=debug
if(NOT "${Boost_USE_DEBUG_LIBS}" STREQUAL "" AND NOT Boost_USE_DEBUG_LIBS)
_BOOST_SKIPPED("boost_container-vc142-mt-gd-x64-1_70.lib" "debug, Boost_USE_DEBUG_LIBS=${Boost_USE_DEBUG_LIBS}")
return()
endif()
message(STATUS " boost_container-vc142-mt-gd-x64-1_70.lib")
# Target file name: boost_container-vc142-mt-gd-x64-1_70.lib
set_property(TARGET Boost::container APPEND PROPERTY IMPORTED_CONFIGURATIONS DEBUG)
set_target_properties(Boost::container PROPERTIES
IMPORTED_LINK_INTERFACE_LANGUAGES_DEBUG CXX
IMPORTED_LOCATION_DEBUG "${_BOOST_LIBDIR}/boost_container-vc142-mt-gd-x64-1_70.lib"
)
set_target_properties(Boost::container PROPERTIES
INTERFACE_COMPILE_DEFINITIONS "BOOST_CONTAINER_DYN_LINK"
)
list(APPEND _BOOST_CONTAINER_DEPS headers)

View File

@@ -0,0 +1,72 @@
# Generated by Boost 1.70.0
# address-model=64
if(CMAKE_SIZEOF_VOID_P EQUAL 4)
_BOOST_SKIPPED("boost_container-vc142-mt-x64-1_70.lib" "64 bit, need 32")
return()
endif()
# layout=versioned
# toolset=vc142
if(Boost_COMPILER AND NOT Boost_COMPILER STREQUAL "vc142")
_BOOST_SKIPPED("boost_container-vc142-mt-x64-1_70.lib" "vc142, Boost_COMPILER=${Boost_COMPILER}")
return()
endif()
if(BOOST_DETECTED_TOOLSET AND NOT BOOST_DETECTED_TOOLSET STREQUAL "vc142")
_BOOST_SKIPPED("boost_container-vc142-mt-x64-1_70.lib" "vc142, detected ${BOOST_DETECTED_TOOLSET}, set Boost_COMPILER to override")
return()
endif()
# link=shared
if(NOT "${Boost_USE_STATIC_LIBS}" STREQUAL "" AND Boost_USE_STATIC_LIBS)
_BOOST_SKIPPED("boost_container-vc142-mt-x64-1_70.lib" "shared, Boost_USE_STATIC_LIBS=${Boost_USE_STATIC_LIBS}")
return()
endif()
if(NOT BUILD_SHARED_LIBS)
_BOOST_SKIPPED("boost_container-vc142-mt-x64-1_70.lib" "shared, BUILD_SHARED_LIBS not ON, set Boost_USE_STATIC_LIBS=OFF to override")
return()
endif()
# runtime-link=shared
if(Boost_USE_STATIC_RUNTIME)
_BOOST_SKIPPED("boost_container-vc142-mt-x64-1_70.lib" "shared runtime, Boost_USE_STATIC_RUNTIME=${Boost_USE_STATIC_RUNTIME}")
return()
endif()
# runtime-debugging=off
if(Boost_USE_DEBUG_RUNTIME)
_BOOST_SKIPPED("boost_container-vc142-mt-x64-1_70.lib" "release runtime, Boost_USE_DEBUG_RUNTIME=${Boost_USE_DEBUG_RUNTIME}")
return()
endif()
# threading=multi
# variant=release
if(NOT "${Boost_USE_RELEASE_LIBS}" STREQUAL "" AND NOT Boost_USE_RELEASE_LIBS)
_BOOST_SKIPPED("boost_container-vc142-mt-x64-1_70.lib" "release, Boost_USE_RELEASE_LIBS=${Boost_USE_RELEASE_LIBS}")
return()
endif()
message(STATUS " boost_container-vc142-mt-x64-1_70.lib")
# Target file name: boost_container-vc142-mt-x64-1_70.lib
set_property(TARGET Boost::container APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE)
set_target_properties(Boost::container PROPERTIES
IMPORTED_LINK_INTERFACE_LANGUAGES_RELEASE CXX
IMPORTED_LOCATION_RELEASE "${_BOOST_LIBDIR}/boost_container-vc142-mt-x64-1_70.lib"
)
set_target_properties(Boost::container PROPERTIES
INTERFACE_COMPILE_DEFINITIONS "BOOST_CONTAINER_DYN_LINK"
)
list(APPEND _BOOST_CONTAINER_DEPS headers)

View File

@@ -0,0 +1,12 @@
# Generated by Boost 1.70.0
set(PACKAGE_VERSION 1.70.0)
if(PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION)
set(PACKAGE_VERSION_COMPATIBLE FALSE)
else()
set(PACKAGE_VERSION_COMPATIBLE TRUE)
if(PACKAGE_FIND_VERSION STREQUAL PACKAGE_VERSION)
set(PACKAGE_VERSION_EXACT TRUE)
endif()
endif()

View File

@@ -0,0 +1,98 @@
# Generated by Boost 1.70.0
if(TARGET Boost::context)
return()
endif()
message(STATUS "Found boost_context ${boost_context_VERSION} at ${boost_context_DIR}")
# Compute the include and library directories relative to this file.
get_filename_component(_BOOST_CMAKEDIR "${CMAKE_CURRENT_LIST_DIR}/../" ABSOLUTE)
get_filename_component(_BOOST_INCLUDEDIR "${_BOOST_CMAKEDIR}/../../include/boost-1_70/" ABSOLUTE)
get_filename_component(_BOOST_LIBDIR "${_BOOST_CMAKEDIR}/../" ABSOLUTE)
# Create imported target Boost::context
add_library(Boost::context UNKNOWN IMPORTED)
set_target_properties(Boost::context PROPERTIES
INTERFACE_INCLUDE_DIRECTORIES "${_BOOST_INCLUDEDIR}"
INTERFACE_COMPILE_DEFINITIONS "BOOST_ALL_NO_LIB"
)
include(${CMAKE_CURRENT_LIST_DIR}/../BoostDetectToolset-1.70.0.cmake)
if(Boost_DEBUG)
message(STATUS "Scanning ${CMAKE_CURRENT_LIST_DIR}/libboost_context-variant*.cmake")
endif()
file(GLOB __boost_variants "${CMAKE_CURRENT_LIST_DIR}/libboost_context-variant*.cmake")
macro(_BOOST_SKIPPED fname reason)
if(Boost_DEBUG)
message(STATUS " ... skipped ${fname} (${reason})")
endif()
list(APPEND __boost_skipped "${fname} (${reason})")
endmacro()
foreach(f IN LISTS __boost_variants)
if(Boost_DEBUG)
message(STATUS " Including ${f}")
endif()
include(${f})
endforeach()
unset(_BOOST_LIBDIR)
unset(_BOOST_INCLUDEDIR)
unset(_BOOST_CMAKEDIR)
get_target_property(__boost_configs Boost::context IMPORTED_CONFIGURATIONS)
if(__boost_variants AND NOT __boost_configs)
message(STATUS "No suitable boost_context variant has been identified!")
if(NOT Boost_DEBUG)
foreach(s IN LISTS __boost_skipped)
message(STATUS " ${s}")
endforeach()
endif()
set(boost_context_FOUND 0)
set(boost_context_NOT_FOUND_MESSAGE "No suitable build variant has been found.")
unset(__boost_skipped)
unset(__boost_configs)
unset(__boost_variants)
unset(_BOOST_CONTEXT_DEPS)
return()
endif()
unset(__boost_skipped)
unset(__boost_configs)
unset(__boost_variants)
if(_BOOST_CONTEXT_DEPS)
list(REMOVE_DUPLICATES _BOOST_CONTEXT_DEPS)
message(STATUS "Adding boost_context dependencies: ${_BOOST_CONTEXT_DEPS}")
endif()
foreach(dep_boost_context IN LISTS _BOOST_CONTEXT_DEPS)
set(_BOOST_QUIET)
if(boost_context_FIND_QUIETLY)
set(_BOOST_QUIET QUIET)
endif()
set(_BOOST_REQUIRED)
if(boost_context_FIND_REQUIRED)
set(_BOOST_REQUIRED REQUIRED)
endif()
get_filename_component(_BOOST_CMAKEDIR "${CMAKE_CURRENT_LIST_DIR}/../" ABSOLUTE)
find_package(boost_${dep_boost_context} 1.70.0 EXACT CONFIG ${_BOOST_REQUIRED} ${_BOOST_QUIET} HINTS ${_BOOST_CMAKEDIR})
set_property(TARGET Boost::context APPEND PROPERTY INTERFACE_LINK_LIBRARIES Boost::${dep_boost_context})
unset(_BOOST_QUIET)
unset(_BOOST_REQUIRED)
unset(_BOOST_CMAKEDIR)
if(NOT boost_${dep_boost_context}_FOUND)
set(boost_context_FOUND 0)
set(boost_context_NOT_FOUND_MESSAGE "A required dependency, boost_${dep_boost_context}, has not been found.")
unset(_BOOST_CONTEXT_DEPS)
return()
endif()
endforeach()
unset(_BOOST_CONTEXT_DEPS)

View File

@@ -0,0 +1,72 @@
# Generated by Boost 1.70.0
# address-model=64
if(CMAKE_SIZEOF_VOID_P EQUAL 4)
_BOOST_SKIPPED("boost_context-vc142-mt-gd-x64-1_70.lib" "64 bit, need 32")
return()
endif()
# layout=versioned
# toolset=vc142
if(Boost_COMPILER AND NOT Boost_COMPILER STREQUAL "vc142")
_BOOST_SKIPPED("boost_context-vc142-mt-gd-x64-1_70.lib" "vc142, Boost_COMPILER=${Boost_COMPILER}")
return()
endif()
if(BOOST_DETECTED_TOOLSET AND NOT BOOST_DETECTED_TOOLSET STREQUAL "vc142")
_BOOST_SKIPPED("boost_context-vc142-mt-gd-x64-1_70.lib" "vc142, detected ${BOOST_DETECTED_TOOLSET}, set Boost_COMPILER to override")
return()
endif()
# link=shared
if(NOT "${Boost_USE_STATIC_LIBS}" STREQUAL "" AND Boost_USE_STATIC_LIBS)
_BOOST_SKIPPED("boost_context-vc142-mt-gd-x64-1_70.lib" "shared, Boost_USE_STATIC_LIBS=${Boost_USE_STATIC_LIBS}")
return()
endif()
if(NOT BUILD_SHARED_LIBS)
_BOOST_SKIPPED("boost_context-vc142-mt-gd-x64-1_70.lib" "shared, BUILD_SHARED_LIBS not ON, set Boost_USE_STATIC_LIBS=OFF to override")
return()
endif()
# runtime-link=shared
if(Boost_USE_STATIC_RUNTIME)
_BOOST_SKIPPED("boost_context-vc142-mt-gd-x64-1_70.lib" "shared runtime, Boost_USE_STATIC_RUNTIME=${Boost_USE_STATIC_RUNTIME}")
return()
endif()
# runtime-debugging=on
if(NOT "${Boost_USE_DEBUG_RUNTIME}" STREQUAL "" AND NOT Boost_USE_DEBUG_RUNTIME)
_BOOST_SKIPPED("boost_context-vc142-mt-gd-x64-1_70.lib" "debug runtime, Boost_USE_DEBUG_RUNTIME=${Boost_USE_DEBUG_RUNTIME}")
return()
endif()
# threading=multi
# variant=debug
if(NOT "${Boost_USE_DEBUG_LIBS}" STREQUAL "" AND NOT Boost_USE_DEBUG_LIBS)
_BOOST_SKIPPED("boost_context-vc142-mt-gd-x64-1_70.lib" "debug, Boost_USE_DEBUG_LIBS=${Boost_USE_DEBUG_LIBS}")
return()
endif()
message(STATUS " boost_context-vc142-mt-gd-x64-1_70.lib")
# Target file name: boost_context-vc142-mt-gd-x64-1_70.lib
set_property(TARGET Boost::context APPEND PROPERTY IMPORTED_CONFIGURATIONS DEBUG)
set_target_properties(Boost::context PROPERTIES
IMPORTED_LINK_INTERFACE_LANGUAGES_DEBUG CXX
IMPORTED_LOCATION_DEBUG "${_BOOST_LIBDIR}/boost_context-vc142-mt-gd-x64-1_70.lib"
)
set_target_properties(Boost::context PROPERTIES
INTERFACE_COMPILE_DEFINITIONS "BOOST_CONTEXT_DYN_LINK"
)
list(APPEND _BOOST_CONTEXT_DEPS headers)

View File

@@ -0,0 +1,72 @@
# Generated by Boost 1.70.0
# address-model=64
if(CMAKE_SIZEOF_VOID_P EQUAL 4)
_BOOST_SKIPPED("boost_context-vc142-mt-x64-1_70.lib" "64 bit, need 32")
return()
endif()
# layout=versioned
# toolset=vc142
if(Boost_COMPILER AND NOT Boost_COMPILER STREQUAL "vc142")
_BOOST_SKIPPED("boost_context-vc142-mt-x64-1_70.lib" "vc142, Boost_COMPILER=${Boost_COMPILER}")
return()
endif()
if(BOOST_DETECTED_TOOLSET AND NOT BOOST_DETECTED_TOOLSET STREQUAL "vc142")
_BOOST_SKIPPED("boost_context-vc142-mt-x64-1_70.lib" "vc142, detected ${BOOST_DETECTED_TOOLSET}, set Boost_COMPILER to override")
return()
endif()
# link=shared
if(NOT "${Boost_USE_STATIC_LIBS}" STREQUAL "" AND Boost_USE_STATIC_LIBS)
_BOOST_SKIPPED("boost_context-vc142-mt-x64-1_70.lib" "shared, Boost_USE_STATIC_LIBS=${Boost_USE_STATIC_LIBS}")
return()
endif()
if(NOT BUILD_SHARED_LIBS)
_BOOST_SKIPPED("boost_context-vc142-mt-x64-1_70.lib" "shared, BUILD_SHARED_LIBS not ON, set Boost_USE_STATIC_LIBS=OFF to override")
return()
endif()
# runtime-link=shared
if(Boost_USE_STATIC_RUNTIME)
_BOOST_SKIPPED("boost_context-vc142-mt-x64-1_70.lib" "shared runtime, Boost_USE_STATIC_RUNTIME=${Boost_USE_STATIC_RUNTIME}")
return()
endif()
# runtime-debugging=off
if(Boost_USE_DEBUG_RUNTIME)
_BOOST_SKIPPED("boost_context-vc142-mt-x64-1_70.lib" "release runtime, Boost_USE_DEBUG_RUNTIME=${Boost_USE_DEBUG_RUNTIME}")
return()
endif()
# threading=multi
# variant=release
if(NOT "${Boost_USE_RELEASE_LIBS}" STREQUAL "" AND NOT Boost_USE_RELEASE_LIBS)
_BOOST_SKIPPED("boost_context-vc142-mt-x64-1_70.lib" "release, Boost_USE_RELEASE_LIBS=${Boost_USE_RELEASE_LIBS}")
return()
endif()
message(STATUS " boost_context-vc142-mt-x64-1_70.lib")
# Target file name: boost_context-vc142-mt-x64-1_70.lib
set_property(TARGET Boost::context APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE)
set_target_properties(Boost::context PROPERTIES
IMPORTED_LINK_INTERFACE_LANGUAGES_RELEASE CXX
IMPORTED_LOCATION_RELEASE "${_BOOST_LIBDIR}/boost_context-vc142-mt-x64-1_70.lib"
)
set_target_properties(Boost::context PROPERTIES
INTERFACE_COMPILE_DEFINITIONS "BOOST_CONTEXT_DYN_LINK"
)
list(APPEND _BOOST_CONTEXT_DEPS headers)

View File

@@ -0,0 +1,12 @@
# Generated by Boost 1.70.0
set(PACKAGE_VERSION 1.70.0)
if(PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION)
set(PACKAGE_VERSION_COMPATIBLE FALSE)
else()
set(PACKAGE_VERSION_COMPATIBLE TRUE)
if(PACKAGE_FIND_VERSION STREQUAL PACKAGE_VERSION)
set(PACKAGE_VERSION_EXACT TRUE)
endif()
endif()

View File

@@ -0,0 +1,98 @@
# Generated by Boost 1.70.0
if(TARGET Boost::contract)
return()
endif()
message(STATUS "Found boost_contract ${boost_contract_VERSION} at ${boost_contract_DIR}")
# Compute the include and library directories relative to this file.
get_filename_component(_BOOST_CMAKEDIR "${CMAKE_CURRENT_LIST_DIR}/../" ABSOLUTE)
get_filename_component(_BOOST_INCLUDEDIR "${_BOOST_CMAKEDIR}/../../include/boost-1_70/" ABSOLUTE)
get_filename_component(_BOOST_LIBDIR "${_BOOST_CMAKEDIR}/../" ABSOLUTE)
# Create imported target Boost::contract
add_library(Boost::contract UNKNOWN IMPORTED)
set_target_properties(Boost::contract PROPERTIES
INTERFACE_INCLUDE_DIRECTORIES "${_BOOST_INCLUDEDIR}"
INTERFACE_COMPILE_DEFINITIONS "BOOST_ALL_NO_LIB"
)
include(${CMAKE_CURRENT_LIST_DIR}/../BoostDetectToolset-1.70.0.cmake)
if(Boost_DEBUG)
message(STATUS "Scanning ${CMAKE_CURRENT_LIST_DIR}/libboost_contract-variant*.cmake")
endif()
file(GLOB __boost_variants "${CMAKE_CURRENT_LIST_DIR}/libboost_contract-variant*.cmake")
macro(_BOOST_SKIPPED fname reason)
if(Boost_DEBUG)
message(STATUS " ... skipped ${fname} (${reason})")
endif()
list(APPEND __boost_skipped "${fname} (${reason})")
endmacro()
foreach(f IN LISTS __boost_variants)
if(Boost_DEBUG)
message(STATUS " Including ${f}")
endif()
include(${f})
endforeach()
unset(_BOOST_LIBDIR)
unset(_BOOST_INCLUDEDIR)
unset(_BOOST_CMAKEDIR)
get_target_property(__boost_configs Boost::contract IMPORTED_CONFIGURATIONS)
if(__boost_variants AND NOT __boost_configs)
message(STATUS "No suitable boost_contract variant has been identified!")
if(NOT Boost_DEBUG)
foreach(s IN LISTS __boost_skipped)
message(STATUS " ${s}")
endforeach()
endif()
set(boost_contract_FOUND 0)
set(boost_contract_NOT_FOUND_MESSAGE "No suitable build variant has been found.")
unset(__boost_skipped)
unset(__boost_configs)
unset(__boost_variants)
unset(_BOOST_CONTRACT_DEPS)
return()
endif()
unset(__boost_skipped)
unset(__boost_configs)
unset(__boost_variants)
if(_BOOST_CONTRACT_DEPS)
list(REMOVE_DUPLICATES _BOOST_CONTRACT_DEPS)
message(STATUS "Adding boost_contract dependencies: ${_BOOST_CONTRACT_DEPS}")
endif()
foreach(dep_boost_contract IN LISTS _BOOST_CONTRACT_DEPS)
set(_BOOST_QUIET)
if(boost_contract_FIND_QUIETLY)
set(_BOOST_QUIET QUIET)
endif()
set(_BOOST_REQUIRED)
if(boost_contract_FIND_REQUIRED)
set(_BOOST_REQUIRED REQUIRED)
endif()
get_filename_component(_BOOST_CMAKEDIR "${CMAKE_CURRENT_LIST_DIR}/../" ABSOLUTE)
find_package(boost_${dep_boost_contract} 1.70.0 EXACT CONFIG ${_BOOST_REQUIRED} ${_BOOST_QUIET} HINTS ${_BOOST_CMAKEDIR})
set_property(TARGET Boost::contract APPEND PROPERTY INTERFACE_LINK_LIBRARIES Boost::${dep_boost_contract})
unset(_BOOST_QUIET)
unset(_BOOST_REQUIRED)
unset(_BOOST_CMAKEDIR)
if(NOT boost_${dep_boost_contract}_FOUND)
set(boost_contract_FOUND 0)
set(boost_contract_NOT_FOUND_MESSAGE "A required dependency, boost_${dep_boost_contract}, has not been found.")
unset(_BOOST_CONTRACT_DEPS)
return()
endif()
endforeach()
unset(_BOOST_CONTRACT_DEPS)

View File

@@ -0,0 +1,72 @@
# Generated by Boost 1.70.0
# address-model=64
if(CMAKE_SIZEOF_VOID_P EQUAL 4)
_BOOST_SKIPPED("boost_contract-vc142-mt-gd-x64-1_70.lib" "64 bit, need 32")
return()
endif()
# layout=versioned
# toolset=vc142
if(Boost_COMPILER AND NOT Boost_COMPILER STREQUAL "vc142")
_BOOST_SKIPPED("boost_contract-vc142-mt-gd-x64-1_70.lib" "vc142, Boost_COMPILER=${Boost_COMPILER}")
return()
endif()
if(BOOST_DETECTED_TOOLSET AND NOT BOOST_DETECTED_TOOLSET STREQUAL "vc142")
_BOOST_SKIPPED("boost_contract-vc142-mt-gd-x64-1_70.lib" "vc142, detected ${BOOST_DETECTED_TOOLSET}, set Boost_COMPILER to override")
return()
endif()
# link=shared
if(NOT "${Boost_USE_STATIC_LIBS}" STREQUAL "" AND Boost_USE_STATIC_LIBS)
_BOOST_SKIPPED("boost_contract-vc142-mt-gd-x64-1_70.lib" "shared, Boost_USE_STATIC_LIBS=${Boost_USE_STATIC_LIBS}")
return()
endif()
if(NOT BUILD_SHARED_LIBS)
_BOOST_SKIPPED("boost_contract-vc142-mt-gd-x64-1_70.lib" "shared, BUILD_SHARED_LIBS not ON, set Boost_USE_STATIC_LIBS=OFF to override")
return()
endif()
# runtime-link=shared
if(Boost_USE_STATIC_RUNTIME)
_BOOST_SKIPPED("boost_contract-vc142-mt-gd-x64-1_70.lib" "shared runtime, Boost_USE_STATIC_RUNTIME=${Boost_USE_STATIC_RUNTIME}")
return()
endif()
# runtime-debugging=on
if(NOT "${Boost_USE_DEBUG_RUNTIME}" STREQUAL "" AND NOT Boost_USE_DEBUG_RUNTIME)
_BOOST_SKIPPED("boost_contract-vc142-mt-gd-x64-1_70.lib" "debug runtime, Boost_USE_DEBUG_RUNTIME=${Boost_USE_DEBUG_RUNTIME}")
return()
endif()
# threading=multi
# variant=debug
if(NOT "${Boost_USE_DEBUG_LIBS}" STREQUAL "" AND NOT Boost_USE_DEBUG_LIBS)
_BOOST_SKIPPED("boost_contract-vc142-mt-gd-x64-1_70.lib" "debug, Boost_USE_DEBUG_LIBS=${Boost_USE_DEBUG_LIBS}")
return()
endif()
message(STATUS " boost_contract-vc142-mt-gd-x64-1_70.lib")
# Target file name: boost_contract-vc142-mt-gd-x64-1_70.lib
set_property(TARGET Boost::contract APPEND PROPERTY IMPORTED_CONFIGURATIONS DEBUG)
set_target_properties(Boost::contract PROPERTIES
IMPORTED_LINK_INTERFACE_LANGUAGES_DEBUG CXX
IMPORTED_LOCATION_DEBUG "${_BOOST_LIBDIR}/boost_contract-vc142-mt-gd-x64-1_70.lib"
)
set_target_properties(Boost::contract PROPERTIES
INTERFACE_COMPILE_DEFINITIONS "BOOST_CONTRACT_DYN_LINK"
)
list(APPEND _BOOST_CONTRACT_DEPS system headers)

View File

@@ -0,0 +1,72 @@
# Generated by Boost 1.70.0
# address-model=64
if(CMAKE_SIZEOF_VOID_P EQUAL 4)
_BOOST_SKIPPED("boost_contract-vc142-mt-x64-1_70.lib" "64 bit, need 32")
return()
endif()
# layout=versioned
# toolset=vc142
if(Boost_COMPILER AND NOT Boost_COMPILER STREQUAL "vc142")
_BOOST_SKIPPED("boost_contract-vc142-mt-x64-1_70.lib" "vc142, Boost_COMPILER=${Boost_COMPILER}")
return()
endif()
if(BOOST_DETECTED_TOOLSET AND NOT BOOST_DETECTED_TOOLSET STREQUAL "vc142")
_BOOST_SKIPPED("boost_contract-vc142-mt-x64-1_70.lib" "vc142, detected ${BOOST_DETECTED_TOOLSET}, set Boost_COMPILER to override")
return()
endif()
# link=shared
if(NOT "${Boost_USE_STATIC_LIBS}" STREQUAL "" AND Boost_USE_STATIC_LIBS)
_BOOST_SKIPPED("boost_contract-vc142-mt-x64-1_70.lib" "shared, Boost_USE_STATIC_LIBS=${Boost_USE_STATIC_LIBS}")
return()
endif()
if(NOT BUILD_SHARED_LIBS)
_BOOST_SKIPPED("boost_contract-vc142-mt-x64-1_70.lib" "shared, BUILD_SHARED_LIBS not ON, set Boost_USE_STATIC_LIBS=OFF to override")
return()
endif()
# runtime-link=shared
if(Boost_USE_STATIC_RUNTIME)
_BOOST_SKIPPED("boost_contract-vc142-mt-x64-1_70.lib" "shared runtime, Boost_USE_STATIC_RUNTIME=${Boost_USE_STATIC_RUNTIME}")
return()
endif()
# runtime-debugging=off
if(Boost_USE_DEBUG_RUNTIME)
_BOOST_SKIPPED("boost_contract-vc142-mt-x64-1_70.lib" "release runtime, Boost_USE_DEBUG_RUNTIME=${Boost_USE_DEBUG_RUNTIME}")
return()
endif()
# threading=multi
# variant=release
if(NOT "${Boost_USE_RELEASE_LIBS}" STREQUAL "" AND NOT Boost_USE_RELEASE_LIBS)
_BOOST_SKIPPED("boost_contract-vc142-mt-x64-1_70.lib" "release, Boost_USE_RELEASE_LIBS=${Boost_USE_RELEASE_LIBS}")
return()
endif()
message(STATUS " boost_contract-vc142-mt-x64-1_70.lib")
# Target file name: boost_contract-vc142-mt-x64-1_70.lib
set_property(TARGET Boost::contract APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE)
set_target_properties(Boost::contract PROPERTIES
IMPORTED_LINK_INTERFACE_LANGUAGES_RELEASE CXX
IMPORTED_LOCATION_RELEASE "${_BOOST_LIBDIR}/boost_contract-vc142-mt-x64-1_70.lib"
)
set_target_properties(Boost::contract PROPERTIES
INTERFACE_COMPILE_DEFINITIONS "BOOST_CONTRACT_DYN_LINK"
)
list(APPEND _BOOST_CONTRACT_DEPS system headers)

View File

@@ -0,0 +1,12 @@
# Generated by Boost 1.70.0
set(PACKAGE_VERSION 1.70.0)
if(PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION)
set(PACKAGE_VERSION_COMPATIBLE FALSE)
else()
set(PACKAGE_VERSION_COMPATIBLE TRUE)
if(PACKAGE_FIND_VERSION STREQUAL PACKAGE_VERSION)
set(PACKAGE_VERSION_EXACT TRUE)
endif()
endif()

View File

@@ -0,0 +1,98 @@
# Generated by Boost 1.70.0
if(TARGET Boost::coroutine)
return()
endif()
message(STATUS "Found boost_coroutine ${boost_coroutine_VERSION} at ${boost_coroutine_DIR}")
# Compute the include and library directories relative to this file.
get_filename_component(_BOOST_CMAKEDIR "${CMAKE_CURRENT_LIST_DIR}/../" ABSOLUTE)
get_filename_component(_BOOST_INCLUDEDIR "${_BOOST_CMAKEDIR}/../../include/boost-1_70/" ABSOLUTE)
get_filename_component(_BOOST_LIBDIR "${_BOOST_CMAKEDIR}/../" ABSOLUTE)
# Create imported target Boost::coroutine
add_library(Boost::coroutine UNKNOWN IMPORTED)
set_target_properties(Boost::coroutine PROPERTIES
INTERFACE_INCLUDE_DIRECTORIES "${_BOOST_INCLUDEDIR}"
INTERFACE_COMPILE_DEFINITIONS "BOOST_ALL_NO_LIB"
)
include(${CMAKE_CURRENT_LIST_DIR}/../BoostDetectToolset-1.70.0.cmake)
if(Boost_DEBUG)
message(STATUS "Scanning ${CMAKE_CURRENT_LIST_DIR}/libboost_coroutine-variant*.cmake")
endif()
file(GLOB __boost_variants "${CMAKE_CURRENT_LIST_DIR}/libboost_coroutine-variant*.cmake")
macro(_BOOST_SKIPPED fname reason)
if(Boost_DEBUG)
message(STATUS " ... skipped ${fname} (${reason})")
endif()
list(APPEND __boost_skipped "${fname} (${reason})")
endmacro()
foreach(f IN LISTS __boost_variants)
if(Boost_DEBUG)
message(STATUS " Including ${f}")
endif()
include(${f})
endforeach()
unset(_BOOST_LIBDIR)
unset(_BOOST_INCLUDEDIR)
unset(_BOOST_CMAKEDIR)
get_target_property(__boost_configs Boost::coroutine IMPORTED_CONFIGURATIONS)
if(__boost_variants AND NOT __boost_configs)
message(STATUS "No suitable boost_coroutine variant has been identified!")
if(NOT Boost_DEBUG)
foreach(s IN LISTS __boost_skipped)
message(STATUS " ${s}")
endforeach()
endif()
set(boost_coroutine_FOUND 0)
set(boost_coroutine_NOT_FOUND_MESSAGE "No suitable build variant has been found.")
unset(__boost_skipped)
unset(__boost_configs)
unset(__boost_variants)
unset(_BOOST_COROUTINE_DEPS)
return()
endif()
unset(__boost_skipped)
unset(__boost_configs)
unset(__boost_variants)
if(_BOOST_COROUTINE_DEPS)
list(REMOVE_DUPLICATES _BOOST_COROUTINE_DEPS)
message(STATUS "Adding boost_coroutine dependencies: ${_BOOST_COROUTINE_DEPS}")
endif()
foreach(dep_boost_coroutine IN LISTS _BOOST_COROUTINE_DEPS)
set(_BOOST_QUIET)
if(boost_coroutine_FIND_QUIETLY)
set(_BOOST_QUIET QUIET)
endif()
set(_BOOST_REQUIRED)
if(boost_coroutine_FIND_REQUIRED)
set(_BOOST_REQUIRED REQUIRED)
endif()
get_filename_component(_BOOST_CMAKEDIR "${CMAKE_CURRENT_LIST_DIR}/../" ABSOLUTE)
find_package(boost_${dep_boost_coroutine} 1.70.0 EXACT CONFIG ${_BOOST_REQUIRED} ${_BOOST_QUIET} HINTS ${_BOOST_CMAKEDIR})
set_property(TARGET Boost::coroutine APPEND PROPERTY INTERFACE_LINK_LIBRARIES Boost::${dep_boost_coroutine})
unset(_BOOST_QUIET)
unset(_BOOST_REQUIRED)
unset(_BOOST_CMAKEDIR)
if(NOT boost_${dep_boost_coroutine}_FOUND)
set(boost_coroutine_FOUND 0)
set(boost_coroutine_NOT_FOUND_MESSAGE "A required dependency, boost_${dep_boost_coroutine}, has not been found.")
unset(_BOOST_COROUTINE_DEPS)
return()
endif()
endforeach()
unset(_BOOST_COROUTINE_DEPS)

View File

@@ -0,0 +1,72 @@
# Generated by Boost 1.70.0
# address-model=64
if(CMAKE_SIZEOF_VOID_P EQUAL 4)
_BOOST_SKIPPED("boost_coroutine-vc142-mt-gd-x64-1_70.lib" "64 bit, need 32")
return()
endif()
# layout=versioned
# toolset=vc142
if(Boost_COMPILER AND NOT Boost_COMPILER STREQUAL "vc142")
_BOOST_SKIPPED("boost_coroutine-vc142-mt-gd-x64-1_70.lib" "vc142, Boost_COMPILER=${Boost_COMPILER}")
return()
endif()
if(BOOST_DETECTED_TOOLSET AND NOT BOOST_DETECTED_TOOLSET STREQUAL "vc142")
_BOOST_SKIPPED("boost_coroutine-vc142-mt-gd-x64-1_70.lib" "vc142, detected ${BOOST_DETECTED_TOOLSET}, set Boost_COMPILER to override")
return()
endif()
# link=shared
if(NOT "${Boost_USE_STATIC_LIBS}" STREQUAL "" AND Boost_USE_STATIC_LIBS)
_BOOST_SKIPPED("boost_coroutine-vc142-mt-gd-x64-1_70.lib" "shared, Boost_USE_STATIC_LIBS=${Boost_USE_STATIC_LIBS}")
return()
endif()
if(NOT BUILD_SHARED_LIBS)
_BOOST_SKIPPED("boost_coroutine-vc142-mt-gd-x64-1_70.lib" "shared, BUILD_SHARED_LIBS not ON, set Boost_USE_STATIC_LIBS=OFF to override")
return()
endif()
# runtime-link=shared
if(Boost_USE_STATIC_RUNTIME)
_BOOST_SKIPPED("boost_coroutine-vc142-mt-gd-x64-1_70.lib" "shared runtime, Boost_USE_STATIC_RUNTIME=${Boost_USE_STATIC_RUNTIME}")
return()
endif()
# runtime-debugging=on
if(NOT "${Boost_USE_DEBUG_RUNTIME}" STREQUAL "" AND NOT Boost_USE_DEBUG_RUNTIME)
_BOOST_SKIPPED("boost_coroutine-vc142-mt-gd-x64-1_70.lib" "debug runtime, Boost_USE_DEBUG_RUNTIME=${Boost_USE_DEBUG_RUNTIME}")
return()
endif()
# threading=multi
# variant=debug
if(NOT "${Boost_USE_DEBUG_LIBS}" STREQUAL "" AND NOT Boost_USE_DEBUG_LIBS)
_BOOST_SKIPPED("boost_coroutine-vc142-mt-gd-x64-1_70.lib" "debug, Boost_USE_DEBUG_LIBS=${Boost_USE_DEBUG_LIBS}")
return()
endif()
message(STATUS " boost_coroutine-vc142-mt-gd-x64-1_70.lib")
# Target file name: boost_coroutine-vc142-mt-gd-x64-1_70.lib
set_property(TARGET Boost::coroutine APPEND PROPERTY IMPORTED_CONFIGURATIONS DEBUG)
set_target_properties(Boost::coroutine PROPERTIES
IMPORTED_LINK_INTERFACE_LANGUAGES_DEBUG CXX
IMPORTED_LOCATION_DEBUG "${_BOOST_LIBDIR}/boost_coroutine-vc142-mt-gd-x64-1_70.lib"
)
set_target_properties(Boost::coroutine PROPERTIES
INTERFACE_COMPILE_DEFINITIONS "BOOST_COROUTINE_DYN_LINK"
)
list(APPEND _BOOST_COROUTINE_DEPS chrono context thread headers)

View File

@@ -0,0 +1,72 @@
# Generated by Boost 1.70.0
# address-model=64
if(CMAKE_SIZEOF_VOID_P EQUAL 4)
_BOOST_SKIPPED("boost_coroutine-vc142-mt-x64-1_70.lib" "64 bit, need 32")
return()
endif()
# layout=versioned
# toolset=vc142
if(Boost_COMPILER AND NOT Boost_COMPILER STREQUAL "vc142")
_BOOST_SKIPPED("boost_coroutine-vc142-mt-x64-1_70.lib" "vc142, Boost_COMPILER=${Boost_COMPILER}")
return()
endif()
if(BOOST_DETECTED_TOOLSET AND NOT BOOST_DETECTED_TOOLSET STREQUAL "vc142")
_BOOST_SKIPPED("boost_coroutine-vc142-mt-x64-1_70.lib" "vc142, detected ${BOOST_DETECTED_TOOLSET}, set Boost_COMPILER to override")
return()
endif()
# link=shared
if(NOT "${Boost_USE_STATIC_LIBS}" STREQUAL "" AND Boost_USE_STATIC_LIBS)
_BOOST_SKIPPED("boost_coroutine-vc142-mt-x64-1_70.lib" "shared, Boost_USE_STATIC_LIBS=${Boost_USE_STATIC_LIBS}")
return()
endif()
if(NOT BUILD_SHARED_LIBS)
_BOOST_SKIPPED("boost_coroutine-vc142-mt-x64-1_70.lib" "shared, BUILD_SHARED_LIBS not ON, set Boost_USE_STATIC_LIBS=OFF to override")
return()
endif()
# runtime-link=shared
if(Boost_USE_STATIC_RUNTIME)
_BOOST_SKIPPED("boost_coroutine-vc142-mt-x64-1_70.lib" "shared runtime, Boost_USE_STATIC_RUNTIME=${Boost_USE_STATIC_RUNTIME}")
return()
endif()
# runtime-debugging=off
if(Boost_USE_DEBUG_RUNTIME)
_BOOST_SKIPPED("boost_coroutine-vc142-mt-x64-1_70.lib" "release runtime, Boost_USE_DEBUG_RUNTIME=${Boost_USE_DEBUG_RUNTIME}")
return()
endif()
# threading=multi
# variant=release
if(NOT "${Boost_USE_RELEASE_LIBS}" STREQUAL "" AND NOT Boost_USE_RELEASE_LIBS)
_BOOST_SKIPPED("boost_coroutine-vc142-mt-x64-1_70.lib" "release, Boost_USE_RELEASE_LIBS=${Boost_USE_RELEASE_LIBS}")
return()
endif()
message(STATUS " boost_coroutine-vc142-mt-x64-1_70.lib")
# Target file name: boost_coroutine-vc142-mt-x64-1_70.lib
set_property(TARGET Boost::coroutine APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE)
set_target_properties(Boost::coroutine PROPERTIES
IMPORTED_LINK_INTERFACE_LANGUAGES_RELEASE CXX
IMPORTED_LOCATION_RELEASE "${_BOOST_LIBDIR}/boost_coroutine-vc142-mt-x64-1_70.lib"
)
set_target_properties(Boost::coroutine PROPERTIES
INTERFACE_COMPILE_DEFINITIONS "BOOST_COROUTINE_DYN_LINK"
)
list(APPEND _BOOST_COROUTINE_DEPS chrono context thread headers)

View File

@@ -0,0 +1,12 @@
# Generated by Boost 1.70.0
set(PACKAGE_VERSION 1.70.0)
if(PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION)
set(PACKAGE_VERSION_COMPATIBLE FALSE)
else()
set(PACKAGE_VERSION_COMPATIBLE TRUE)
if(PACKAGE_FIND_VERSION STREQUAL PACKAGE_VERSION)
set(PACKAGE_VERSION_EXACT TRUE)
endif()
endif()

View File

@@ -0,0 +1,98 @@
# Generated by Boost 1.70.0
if(TARGET Boost::date_time)
return()
endif()
message(STATUS "Found boost_date_time ${boost_date_time_VERSION} at ${boost_date_time_DIR}")
# Compute the include and library directories relative to this file.
get_filename_component(_BOOST_CMAKEDIR "${CMAKE_CURRENT_LIST_DIR}/../" ABSOLUTE)
get_filename_component(_BOOST_INCLUDEDIR "${_BOOST_CMAKEDIR}/../../include/boost-1_70/" ABSOLUTE)
get_filename_component(_BOOST_LIBDIR "${_BOOST_CMAKEDIR}/../" ABSOLUTE)
# Create imported target Boost::date_time
add_library(Boost::date_time UNKNOWN IMPORTED)
set_target_properties(Boost::date_time PROPERTIES
INTERFACE_INCLUDE_DIRECTORIES "${_BOOST_INCLUDEDIR}"
INTERFACE_COMPILE_DEFINITIONS "BOOST_ALL_NO_LIB"
)
include(${CMAKE_CURRENT_LIST_DIR}/../BoostDetectToolset-1.70.0.cmake)
if(Boost_DEBUG)
message(STATUS "Scanning ${CMAKE_CURRENT_LIST_DIR}/libboost_date_time-variant*.cmake")
endif()
file(GLOB __boost_variants "${CMAKE_CURRENT_LIST_DIR}/libboost_date_time-variant*.cmake")
macro(_BOOST_SKIPPED fname reason)
if(Boost_DEBUG)
message(STATUS " ... skipped ${fname} (${reason})")
endif()
list(APPEND __boost_skipped "${fname} (${reason})")
endmacro()
foreach(f IN LISTS __boost_variants)
if(Boost_DEBUG)
message(STATUS " Including ${f}")
endif()
include(${f})
endforeach()
unset(_BOOST_LIBDIR)
unset(_BOOST_INCLUDEDIR)
unset(_BOOST_CMAKEDIR)
get_target_property(__boost_configs Boost::date_time IMPORTED_CONFIGURATIONS)
if(__boost_variants AND NOT __boost_configs)
message(STATUS "No suitable boost_date_time variant has been identified!")
if(NOT Boost_DEBUG)
foreach(s IN LISTS __boost_skipped)
message(STATUS " ${s}")
endforeach()
endif()
set(boost_date_time_FOUND 0)
set(boost_date_time_NOT_FOUND_MESSAGE "No suitable build variant has been found.")
unset(__boost_skipped)
unset(__boost_configs)
unset(__boost_variants)
unset(_BOOST_DATE_TIME_DEPS)
return()
endif()
unset(__boost_skipped)
unset(__boost_configs)
unset(__boost_variants)
if(_BOOST_DATE_TIME_DEPS)
list(REMOVE_DUPLICATES _BOOST_DATE_TIME_DEPS)
message(STATUS "Adding boost_date_time dependencies: ${_BOOST_DATE_TIME_DEPS}")
endif()
foreach(dep_boost_date_time IN LISTS _BOOST_DATE_TIME_DEPS)
set(_BOOST_QUIET)
if(boost_date_time_FIND_QUIETLY)
set(_BOOST_QUIET QUIET)
endif()
set(_BOOST_REQUIRED)
if(boost_date_time_FIND_REQUIRED)
set(_BOOST_REQUIRED REQUIRED)
endif()
get_filename_component(_BOOST_CMAKEDIR "${CMAKE_CURRENT_LIST_DIR}/../" ABSOLUTE)
find_package(boost_${dep_boost_date_time} 1.70.0 EXACT CONFIG ${_BOOST_REQUIRED} ${_BOOST_QUIET} HINTS ${_BOOST_CMAKEDIR})
set_property(TARGET Boost::date_time APPEND PROPERTY INTERFACE_LINK_LIBRARIES Boost::${dep_boost_date_time})
unset(_BOOST_QUIET)
unset(_BOOST_REQUIRED)
unset(_BOOST_CMAKEDIR)
if(NOT boost_${dep_boost_date_time}_FOUND)
set(boost_date_time_FOUND 0)
set(boost_date_time_NOT_FOUND_MESSAGE "A required dependency, boost_${dep_boost_date_time}, has not been found.")
unset(_BOOST_DATE_TIME_DEPS)
return()
endif()
endforeach()
unset(_BOOST_DATE_TIME_DEPS)

View File

@@ -0,0 +1,72 @@
# Generated by Boost 1.70.0
# address-model=64
if(CMAKE_SIZEOF_VOID_P EQUAL 4)
_BOOST_SKIPPED("boost_date_time-vc142-mt-gd-x64-1_70.lib" "64 bit, need 32")
return()
endif()
# layout=versioned
# toolset=vc142
if(Boost_COMPILER AND NOT Boost_COMPILER STREQUAL "vc142")
_BOOST_SKIPPED("boost_date_time-vc142-mt-gd-x64-1_70.lib" "vc142, Boost_COMPILER=${Boost_COMPILER}")
return()
endif()
if(BOOST_DETECTED_TOOLSET AND NOT BOOST_DETECTED_TOOLSET STREQUAL "vc142")
_BOOST_SKIPPED("boost_date_time-vc142-mt-gd-x64-1_70.lib" "vc142, detected ${BOOST_DETECTED_TOOLSET}, set Boost_COMPILER to override")
return()
endif()
# link=shared
if(NOT "${Boost_USE_STATIC_LIBS}" STREQUAL "" AND Boost_USE_STATIC_LIBS)
_BOOST_SKIPPED("boost_date_time-vc142-mt-gd-x64-1_70.lib" "shared, Boost_USE_STATIC_LIBS=${Boost_USE_STATIC_LIBS}")
return()
endif()
if(NOT BUILD_SHARED_LIBS)
_BOOST_SKIPPED("boost_date_time-vc142-mt-gd-x64-1_70.lib" "shared, BUILD_SHARED_LIBS not ON, set Boost_USE_STATIC_LIBS=OFF to override")
return()
endif()
# runtime-link=shared
if(Boost_USE_STATIC_RUNTIME)
_BOOST_SKIPPED("boost_date_time-vc142-mt-gd-x64-1_70.lib" "shared runtime, Boost_USE_STATIC_RUNTIME=${Boost_USE_STATIC_RUNTIME}")
return()
endif()
# runtime-debugging=on
if(NOT "${Boost_USE_DEBUG_RUNTIME}" STREQUAL "" AND NOT Boost_USE_DEBUG_RUNTIME)
_BOOST_SKIPPED("boost_date_time-vc142-mt-gd-x64-1_70.lib" "debug runtime, Boost_USE_DEBUG_RUNTIME=${Boost_USE_DEBUG_RUNTIME}")
return()
endif()
# threading=multi
# variant=debug
if(NOT "${Boost_USE_DEBUG_LIBS}" STREQUAL "" AND NOT Boost_USE_DEBUG_LIBS)
_BOOST_SKIPPED("boost_date_time-vc142-mt-gd-x64-1_70.lib" "debug, Boost_USE_DEBUG_LIBS=${Boost_USE_DEBUG_LIBS}")
return()
endif()
message(STATUS " boost_date_time-vc142-mt-gd-x64-1_70.lib")
# Target file name: boost_date_time-vc142-mt-gd-x64-1_70.lib
set_property(TARGET Boost::date_time APPEND PROPERTY IMPORTED_CONFIGURATIONS DEBUG)
set_target_properties(Boost::date_time PROPERTIES
IMPORTED_LINK_INTERFACE_LANGUAGES_DEBUG CXX
IMPORTED_LOCATION_DEBUG "${_BOOST_LIBDIR}/boost_date_time-vc142-mt-gd-x64-1_70.lib"
)
set_target_properties(Boost::date_time PROPERTIES
INTERFACE_COMPILE_DEFINITIONS "BOOST_DATE_TIME_DYN_LINK"
)
list(APPEND _BOOST_DATE_TIME_DEPS headers)

View File

@@ -0,0 +1,72 @@
# Generated by Boost 1.70.0
# address-model=64
if(CMAKE_SIZEOF_VOID_P EQUAL 4)
_BOOST_SKIPPED("boost_date_time-vc142-mt-x64-1_70.lib" "64 bit, need 32")
return()
endif()
# layout=versioned
# toolset=vc142
if(Boost_COMPILER AND NOT Boost_COMPILER STREQUAL "vc142")
_BOOST_SKIPPED("boost_date_time-vc142-mt-x64-1_70.lib" "vc142, Boost_COMPILER=${Boost_COMPILER}")
return()
endif()
if(BOOST_DETECTED_TOOLSET AND NOT BOOST_DETECTED_TOOLSET STREQUAL "vc142")
_BOOST_SKIPPED("boost_date_time-vc142-mt-x64-1_70.lib" "vc142, detected ${BOOST_DETECTED_TOOLSET}, set Boost_COMPILER to override")
return()
endif()
# link=shared
if(NOT "${Boost_USE_STATIC_LIBS}" STREQUAL "" AND Boost_USE_STATIC_LIBS)
_BOOST_SKIPPED("boost_date_time-vc142-mt-x64-1_70.lib" "shared, Boost_USE_STATIC_LIBS=${Boost_USE_STATIC_LIBS}")
return()
endif()
if(NOT BUILD_SHARED_LIBS)
_BOOST_SKIPPED("boost_date_time-vc142-mt-x64-1_70.lib" "shared, BUILD_SHARED_LIBS not ON, set Boost_USE_STATIC_LIBS=OFF to override")
return()
endif()
# runtime-link=shared
if(Boost_USE_STATIC_RUNTIME)
_BOOST_SKIPPED("boost_date_time-vc142-mt-x64-1_70.lib" "shared runtime, Boost_USE_STATIC_RUNTIME=${Boost_USE_STATIC_RUNTIME}")
return()
endif()
# runtime-debugging=off
if(Boost_USE_DEBUG_RUNTIME)
_BOOST_SKIPPED("boost_date_time-vc142-mt-x64-1_70.lib" "release runtime, Boost_USE_DEBUG_RUNTIME=${Boost_USE_DEBUG_RUNTIME}")
return()
endif()
# threading=multi
# variant=release
if(NOT "${Boost_USE_RELEASE_LIBS}" STREQUAL "" AND NOT Boost_USE_RELEASE_LIBS)
_BOOST_SKIPPED("boost_date_time-vc142-mt-x64-1_70.lib" "release, Boost_USE_RELEASE_LIBS=${Boost_USE_RELEASE_LIBS}")
return()
endif()
message(STATUS " boost_date_time-vc142-mt-x64-1_70.lib")
# Target file name: boost_date_time-vc142-mt-x64-1_70.lib
set_property(TARGET Boost::date_time APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE)
set_target_properties(Boost::date_time PROPERTIES
IMPORTED_LINK_INTERFACE_LANGUAGES_RELEASE CXX
IMPORTED_LOCATION_RELEASE "${_BOOST_LIBDIR}/boost_date_time-vc142-mt-x64-1_70.lib"
)
set_target_properties(Boost::date_time PROPERTIES
INTERFACE_COMPILE_DEFINITIONS "BOOST_DATE_TIME_DYN_LINK"
)
list(APPEND _BOOST_DATE_TIME_DEPS headers)

View File

@@ -0,0 +1,12 @@
# Generated by Boost 1.70.0
set(PACKAGE_VERSION 1.70.0)
if(PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION)
set(PACKAGE_VERSION_COMPATIBLE FALSE)
else()
set(PACKAGE_VERSION_COMPATIBLE TRUE)
if(PACKAGE_FIND_VERSION STREQUAL PACKAGE_VERSION)
set(PACKAGE_VERSION_EXACT TRUE)
endif()
endif()

View File

@@ -0,0 +1,20 @@
# Generated by Boost 1.70.0
if(TARGET Boost::exception)
return()
endif()
message(STATUS "Found boost_exception ${boost_exception_VERSION} at ${boost_exception_DIR}")
# Compute the include and library directories relative to this file.
get_filename_component(_BOOST_CMAKEDIR "${CMAKE_CURRENT_LIST_DIR}/../" ABSOLUTE)
get_filename_component(_BOOST_INCLUDEDIR "${_BOOST_CMAKEDIR}/../../include/boost-1_70/" ABSOLUTE)
get_filename_component(_BOOST_LIBDIR "${_BOOST_CMAKEDIR}/../" ABSOLUTE)
# Create imported target Boost::exception
add_library(Boost::exception INTERFACE IMPORTED)
set_target_properties(Boost::exception PROPERTIES
INTERFACE_INCLUDE_DIRECTORIES "${_BOOST_INCLUDEDIR}"
INTERFACE_COMPILE_DEFINITIONS "BOOST_ALL_NO_LIB"
)

View File

@@ -0,0 +1,12 @@
# Generated by Boost 1.70.0
set(PACKAGE_VERSION 1.70.0)
if(PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION)
set(PACKAGE_VERSION_COMPATIBLE FALSE)
else()
set(PACKAGE_VERSION_COMPATIBLE TRUE)
if(PACKAGE_FIND_VERSION STREQUAL PACKAGE_VERSION)
set(PACKAGE_VERSION_EXACT TRUE)
endif()
endif()

View File

@@ -0,0 +1,98 @@
# Generated by Boost 1.70.0
if(TARGET Boost::fiber)
return()
endif()
message(STATUS "Found boost_fiber ${boost_fiber_VERSION} at ${boost_fiber_DIR}")
# Compute the include and library directories relative to this file.
get_filename_component(_BOOST_CMAKEDIR "${CMAKE_CURRENT_LIST_DIR}/../" ABSOLUTE)
get_filename_component(_BOOST_INCLUDEDIR "${_BOOST_CMAKEDIR}/../../include/boost-1_70/" ABSOLUTE)
get_filename_component(_BOOST_LIBDIR "${_BOOST_CMAKEDIR}/../" ABSOLUTE)
# Create imported target Boost::fiber
add_library(Boost::fiber UNKNOWN IMPORTED)
set_target_properties(Boost::fiber PROPERTIES
INTERFACE_INCLUDE_DIRECTORIES "${_BOOST_INCLUDEDIR}"
INTERFACE_COMPILE_DEFINITIONS "BOOST_ALL_NO_LIB"
)
include(${CMAKE_CURRENT_LIST_DIR}/../BoostDetectToolset-1.70.0.cmake)
if(Boost_DEBUG)
message(STATUS "Scanning ${CMAKE_CURRENT_LIST_DIR}/libboost_fiber-variant*.cmake")
endif()
file(GLOB __boost_variants "${CMAKE_CURRENT_LIST_DIR}/libboost_fiber-variant*.cmake")
macro(_BOOST_SKIPPED fname reason)
if(Boost_DEBUG)
message(STATUS " ... skipped ${fname} (${reason})")
endif()
list(APPEND __boost_skipped "${fname} (${reason})")
endmacro()
foreach(f IN LISTS __boost_variants)
if(Boost_DEBUG)
message(STATUS " Including ${f}")
endif()
include(${f})
endforeach()
unset(_BOOST_LIBDIR)
unset(_BOOST_INCLUDEDIR)
unset(_BOOST_CMAKEDIR)
get_target_property(__boost_configs Boost::fiber IMPORTED_CONFIGURATIONS)
if(__boost_variants AND NOT __boost_configs)
message(STATUS "No suitable boost_fiber variant has been identified!")
if(NOT Boost_DEBUG)
foreach(s IN LISTS __boost_skipped)
message(STATUS " ${s}")
endforeach()
endif()
set(boost_fiber_FOUND 0)
set(boost_fiber_NOT_FOUND_MESSAGE "No suitable build variant has been found.")
unset(__boost_skipped)
unset(__boost_configs)
unset(__boost_variants)
unset(_BOOST_FIBER_DEPS)
return()
endif()
unset(__boost_skipped)
unset(__boost_configs)
unset(__boost_variants)
if(_BOOST_FIBER_DEPS)
list(REMOVE_DUPLICATES _BOOST_FIBER_DEPS)
message(STATUS "Adding boost_fiber dependencies: ${_BOOST_FIBER_DEPS}")
endif()
foreach(dep_boost_fiber IN LISTS _BOOST_FIBER_DEPS)
set(_BOOST_QUIET)
if(boost_fiber_FIND_QUIETLY)
set(_BOOST_QUIET QUIET)
endif()
set(_BOOST_REQUIRED)
if(boost_fiber_FIND_REQUIRED)
set(_BOOST_REQUIRED REQUIRED)
endif()
get_filename_component(_BOOST_CMAKEDIR "${CMAKE_CURRENT_LIST_DIR}/../" ABSOLUTE)
find_package(boost_${dep_boost_fiber} 1.70.0 EXACT CONFIG ${_BOOST_REQUIRED} ${_BOOST_QUIET} HINTS ${_BOOST_CMAKEDIR})
set_property(TARGET Boost::fiber APPEND PROPERTY INTERFACE_LINK_LIBRARIES Boost::${dep_boost_fiber})
unset(_BOOST_QUIET)
unset(_BOOST_REQUIRED)
unset(_BOOST_CMAKEDIR)
if(NOT boost_${dep_boost_fiber}_FOUND)
set(boost_fiber_FOUND 0)
set(boost_fiber_NOT_FOUND_MESSAGE "A required dependency, boost_${dep_boost_fiber}, has not been found.")
unset(_BOOST_FIBER_DEPS)
return()
endif()
endforeach()
unset(_BOOST_FIBER_DEPS)

View File

@@ -0,0 +1,72 @@
# Generated by Boost 1.70.0
# address-model=64
if(CMAKE_SIZEOF_VOID_P EQUAL 4)
_BOOST_SKIPPED("boost_fiber-vc142-mt-gd-x64-1_70.lib" "64 bit, need 32")
return()
endif()
# layout=versioned
# toolset=vc142
if(Boost_COMPILER AND NOT Boost_COMPILER STREQUAL "vc142")
_BOOST_SKIPPED("boost_fiber-vc142-mt-gd-x64-1_70.lib" "vc142, Boost_COMPILER=${Boost_COMPILER}")
return()
endif()
if(BOOST_DETECTED_TOOLSET AND NOT BOOST_DETECTED_TOOLSET STREQUAL "vc142")
_BOOST_SKIPPED("boost_fiber-vc142-mt-gd-x64-1_70.lib" "vc142, detected ${BOOST_DETECTED_TOOLSET}, set Boost_COMPILER to override")
return()
endif()
# link=shared
if(NOT "${Boost_USE_STATIC_LIBS}" STREQUAL "" AND Boost_USE_STATIC_LIBS)
_BOOST_SKIPPED("boost_fiber-vc142-mt-gd-x64-1_70.lib" "shared, Boost_USE_STATIC_LIBS=${Boost_USE_STATIC_LIBS}")
return()
endif()
if(NOT BUILD_SHARED_LIBS)
_BOOST_SKIPPED("boost_fiber-vc142-mt-gd-x64-1_70.lib" "shared, BUILD_SHARED_LIBS not ON, set Boost_USE_STATIC_LIBS=OFF to override")
return()
endif()
# runtime-link=shared
if(Boost_USE_STATIC_RUNTIME)
_BOOST_SKIPPED("boost_fiber-vc142-mt-gd-x64-1_70.lib" "shared runtime, Boost_USE_STATIC_RUNTIME=${Boost_USE_STATIC_RUNTIME}")
return()
endif()
# runtime-debugging=on
if(NOT "${Boost_USE_DEBUG_RUNTIME}" STREQUAL "" AND NOT Boost_USE_DEBUG_RUNTIME)
_BOOST_SKIPPED("boost_fiber-vc142-mt-gd-x64-1_70.lib" "debug runtime, Boost_USE_DEBUG_RUNTIME=${Boost_USE_DEBUG_RUNTIME}")
return()
endif()
# threading=multi
# variant=debug
if(NOT "${Boost_USE_DEBUG_LIBS}" STREQUAL "" AND NOT Boost_USE_DEBUG_LIBS)
_BOOST_SKIPPED("boost_fiber-vc142-mt-gd-x64-1_70.lib" "debug, Boost_USE_DEBUG_LIBS=${Boost_USE_DEBUG_LIBS}")
return()
endif()
message(STATUS " boost_fiber-vc142-mt-gd-x64-1_70.lib")
# Target file name: boost_fiber-vc142-mt-gd-x64-1_70.lib
set_property(TARGET Boost::fiber APPEND PROPERTY IMPORTED_CONFIGURATIONS DEBUG)
set_target_properties(Boost::fiber PROPERTIES
IMPORTED_LINK_INTERFACE_LANGUAGES_DEBUG CXX
IMPORTED_LOCATION_DEBUG "${_BOOST_LIBDIR}/boost_fiber-vc142-mt-gd-x64-1_70.lib"
)
set_target_properties(Boost::fiber PROPERTIES
INTERFACE_COMPILE_DEFINITIONS "BOOST_FIBER_DYN_LINK"
)
list(APPEND _BOOST_FIBER_DEPS context filesystem headers)

View File

@@ -0,0 +1,72 @@
# Generated by Boost 1.70.0
# address-model=64
if(CMAKE_SIZEOF_VOID_P EQUAL 4)
_BOOST_SKIPPED("boost_fiber-vc142-mt-x64-1_70.lib" "64 bit, need 32")
return()
endif()
# layout=versioned
# toolset=vc142
if(Boost_COMPILER AND NOT Boost_COMPILER STREQUAL "vc142")
_BOOST_SKIPPED("boost_fiber-vc142-mt-x64-1_70.lib" "vc142, Boost_COMPILER=${Boost_COMPILER}")
return()
endif()
if(BOOST_DETECTED_TOOLSET AND NOT BOOST_DETECTED_TOOLSET STREQUAL "vc142")
_BOOST_SKIPPED("boost_fiber-vc142-mt-x64-1_70.lib" "vc142, detected ${BOOST_DETECTED_TOOLSET}, set Boost_COMPILER to override")
return()
endif()
# link=shared
if(NOT "${Boost_USE_STATIC_LIBS}" STREQUAL "" AND Boost_USE_STATIC_LIBS)
_BOOST_SKIPPED("boost_fiber-vc142-mt-x64-1_70.lib" "shared, Boost_USE_STATIC_LIBS=${Boost_USE_STATIC_LIBS}")
return()
endif()
if(NOT BUILD_SHARED_LIBS)
_BOOST_SKIPPED("boost_fiber-vc142-mt-x64-1_70.lib" "shared, BUILD_SHARED_LIBS not ON, set Boost_USE_STATIC_LIBS=OFF to override")
return()
endif()
# runtime-link=shared
if(Boost_USE_STATIC_RUNTIME)
_BOOST_SKIPPED("boost_fiber-vc142-mt-x64-1_70.lib" "shared runtime, Boost_USE_STATIC_RUNTIME=${Boost_USE_STATIC_RUNTIME}")
return()
endif()
# runtime-debugging=off
if(Boost_USE_DEBUG_RUNTIME)
_BOOST_SKIPPED("boost_fiber-vc142-mt-x64-1_70.lib" "release runtime, Boost_USE_DEBUG_RUNTIME=${Boost_USE_DEBUG_RUNTIME}")
return()
endif()
# threading=multi
# variant=release
if(NOT "${Boost_USE_RELEASE_LIBS}" STREQUAL "" AND NOT Boost_USE_RELEASE_LIBS)
_BOOST_SKIPPED("boost_fiber-vc142-mt-x64-1_70.lib" "release, Boost_USE_RELEASE_LIBS=${Boost_USE_RELEASE_LIBS}")
return()
endif()
message(STATUS " boost_fiber-vc142-mt-x64-1_70.lib")
# Target file name: boost_fiber-vc142-mt-x64-1_70.lib
set_property(TARGET Boost::fiber APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE)
set_target_properties(Boost::fiber PROPERTIES
IMPORTED_LINK_INTERFACE_LANGUAGES_RELEASE CXX
IMPORTED_LOCATION_RELEASE "${_BOOST_LIBDIR}/boost_fiber-vc142-mt-x64-1_70.lib"
)
set_target_properties(Boost::fiber PROPERTIES
INTERFACE_COMPILE_DEFINITIONS "BOOST_FIBER_DYN_LINK"
)
list(APPEND _BOOST_FIBER_DEPS context filesystem headers)

View File

@@ -0,0 +1,12 @@
# Generated by Boost 1.70.0
set(PACKAGE_VERSION 1.70.0)
if(PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION)
set(PACKAGE_VERSION_COMPATIBLE FALSE)
else()
set(PACKAGE_VERSION_COMPATIBLE TRUE)
if(PACKAGE_FIND_VERSION STREQUAL PACKAGE_VERSION)
set(PACKAGE_VERSION_EXACT TRUE)
endif()
endif()

View File

@@ -0,0 +1,98 @@
# Generated by Boost 1.70.0
if(TARGET Boost::fiber_numa)
return()
endif()
message(STATUS "Found boost_fiber_numa ${boost_fiber_numa_VERSION} at ${boost_fiber_numa_DIR}")
# Compute the include and library directories relative to this file.
get_filename_component(_BOOST_CMAKEDIR "${CMAKE_CURRENT_LIST_DIR}/../" ABSOLUTE)
get_filename_component(_BOOST_INCLUDEDIR "${_BOOST_CMAKEDIR}/../../include/boost-1_70/" ABSOLUTE)
get_filename_component(_BOOST_LIBDIR "${_BOOST_CMAKEDIR}/../" ABSOLUTE)
# Create imported target Boost::fiber_numa
add_library(Boost::fiber_numa UNKNOWN IMPORTED)
set_target_properties(Boost::fiber_numa PROPERTIES
INTERFACE_INCLUDE_DIRECTORIES "${_BOOST_INCLUDEDIR}"
INTERFACE_COMPILE_DEFINITIONS "BOOST_ALL_NO_LIB"
)
include(${CMAKE_CURRENT_LIST_DIR}/../BoostDetectToolset-1.70.0.cmake)
if(Boost_DEBUG)
message(STATUS "Scanning ${CMAKE_CURRENT_LIST_DIR}/libboost_fiber_numa-variant*.cmake")
endif()
file(GLOB __boost_variants "${CMAKE_CURRENT_LIST_DIR}/libboost_fiber_numa-variant*.cmake")
macro(_BOOST_SKIPPED fname reason)
if(Boost_DEBUG)
message(STATUS " ... skipped ${fname} (${reason})")
endif()
list(APPEND __boost_skipped "${fname} (${reason})")
endmacro()
foreach(f IN LISTS __boost_variants)
if(Boost_DEBUG)
message(STATUS " Including ${f}")
endif()
include(${f})
endforeach()
unset(_BOOST_LIBDIR)
unset(_BOOST_INCLUDEDIR)
unset(_BOOST_CMAKEDIR)
get_target_property(__boost_configs Boost::fiber_numa IMPORTED_CONFIGURATIONS)
if(__boost_variants AND NOT __boost_configs)
message(STATUS "No suitable boost_fiber_numa variant has been identified!")
if(NOT Boost_DEBUG)
foreach(s IN LISTS __boost_skipped)
message(STATUS " ${s}")
endforeach()
endif()
set(boost_fiber_numa_FOUND 0)
set(boost_fiber_numa_NOT_FOUND_MESSAGE "No suitable build variant has been found.")
unset(__boost_skipped)
unset(__boost_configs)
unset(__boost_variants)
unset(_BOOST_FIBER_NUMA_DEPS)
return()
endif()
unset(__boost_skipped)
unset(__boost_configs)
unset(__boost_variants)
if(_BOOST_FIBER_NUMA_DEPS)
list(REMOVE_DUPLICATES _BOOST_FIBER_NUMA_DEPS)
message(STATUS "Adding boost_fiber_numa dependencies: ${_BOOST_FIBER_NUMA_DEPS}")
endif()
foreach(dep_boost_fiber_numa IN LISTS _BOOST_FIBER_NUMA_DEPS)
set(_BOOST_QUIET)
if(boost_fiber_numa_FIND_QUIETLY)
set(_BOOST_QUIET QUIET)
endif()
set(_BOOST_REQUIRED)
if(boost_fiber_numa_FIND_REQUIRED)
set(_BOOST_REQUIRED REQUIRED)
endif()
get_filename_component(_BOOST_CMAKEDIR "${CMAKE_CURRENT_LIST_DIR}/../" ABSOLUTE)
find_package(boost_${dep_boost_fiber_numa} 1.70.0 EXACT CONFIG ${_BOOST_REQUIRED} ${_BOOST_QUIET} HINTS ${_BOOST_CMAKEDIR})
set_property(TARGET Boost::fiber_numa APPEND PROPERTY INTERFACE_LINK_LIBRARIES Boost::${dep_boost_fiber_numa})
unset(_BOOST_QUIET)
unset(_BOOST_REQUIRED)
unset(_BOOST_CMAKEDIR)
if(NOT boost_${dep_boost_fiber_numa}_FOUND)
set(boost_fiber_numa_FOUND 0)
set(boost_fiber_numa_NOT_FOUND_MESSAGE "A required dependency, boost_${dep_boost_fiber_numa}, has not been found.")
unset(_BOOST_FIBER_NUMA_DEPS)
return()
endif()
endforeach()
unset(_BOOST_FIBER_NUMA_DEPS)

View File

@@ -0,0 +1,61 @@
# Generated by Boost 1.70.0
# address-model=64
if(CMAKE_SIZEOF_VOID_P EQUAL 4)
return()
endif()
# layout=versioned
# toolset=vc142
if(Boost_COMPILER AND NOT Boost_COMPILER STREQUAL "vc142")
return()
endif()
if(BOOST_DETECTED_TOOLSET AND NOT BOOST_DETECTED_TOOLSET STREQUAL "vc142")
return()
endif()
# link=shared
if(NOT "${Boost_USE_STATIC_LIBS}" STREQUAL "" AND Boost_USE_STATIC_LIBS)
return()
endif()
if(NOT BUILD_SHARED_LIBS)
return()
endif()
# runtime-link=shared
if(Boost_USE_STATIC_RUNTIME)
return()
endif()
# runtime-debugging=on
if(NOT "${Boost_USE_DEBUG_RUNTIME}" STREQUAL "" AND NOT Boost_USE_DEBUG_RUNTIME)
return()
endif()
# threading=multi
# variant=debug
if(NOT "${Boost_USE_DEBUG_LIBS}" STREQUAL "" AND NOT Boost_USE_DEBUG_LIBS)
return()
endif()
set_property(TARGET Boost::fiber_numa APPEND PROPERTY IMPORTED_CONFIGURATIONS DEBUG)
set_target_properties(Boost::fiber_numa PROPERTIES
IMPORTED_LINK_INTERFACE_LANGUAGES_DEBUG CXX
)
set_target_properties(Boost::fiber_numa PROPERTIES
INTERFACE_COMPILE_DEFINITIONS "BOOST_FIBER_NUMA_DYN_LINK"
)
list(APPEND _BOOST_FIBER_NUMA_DEPS headers)

View File

@@ -0,0 +1,61 @@
# Generated by Boost 1.70.0
# address-model=64
if(CMAKE_SIZEOF_VOID_P EQUAL 4)
return()
endif()
# layout=versioned
# toolset=vc142
if(Boost_COMPILER AND NOT Boost_COMPILER STREQUAL "vc142")
return()
endif()
if(BOOST_DETECTED_TOOLSET AND NOT BOOST_DETECTED_TOOLSET STREQUAL "vc142")
return()
endif()
# link=shared
if(NOT "${Boost_USE_STATIC_LIBS}" STREQUAL "" AND Boost_USE_STATIC_LIBS)
return()
endif()
if(NOT BUILD_SHARED_LIBS)
return()
endif()
# runtime-link=shared
if(Boost_USE_STATIC_RUNTIME)
return()
endif()
# runtime-debugging=off
if(Boost_USE_DEBUG_RUNTIME)
return()
endif()
# threading=multi
# variant=release
if(NOT "${Boost_USE_RELEASE_LIBS}" STREQUAL "" AND NOT Boost_USE_RELEASE_LIBS)
return()
endif()
set_property(TARGET Boost::fiber_numa APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE)
set_target_properties(Boost::fiber_numa PROPERTIES
IMPORTED_LINK_INTERFACE_LANGUAGES_RELEASE CXX
)
set_target_properties(Boost::fiber_numa PROPERTIES
INTERFACE_COMPILE_DEFINITIONS "BOOST_FIBER_NUMA_DYN_LINK"
)
list(APPEND _BOOST_FIBER_NUMA_DEPS headers)

View File

@@ -0,0 +1,12 @@
# Generated by Boost 1.70.0
set(PACKAGE_VERSION 1.70.0)
if(PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION)
set(PACKAGE_VERSION_COMPATIBLE FALSE)
else()
set(PACKAGE_VERSION_COMPATIBLE TRUE)
if(PACKAGE_FIND_VERSION STREQUAL PACKAGE_VERSION)
set(PACKAGE_VERSION_EXACT TRUE)
endif()
endif()

View File

@@ -0,0 +1,98 @@
# Generated by Boost 1.70.0
if(TARGET Boost::filesystem)
return()
endif()
message(STATUS "Found boost_filesystem ${boost_filesystem_VERSION} at ${boost_filesystem_DIR}")
# Compute the include and library directories relative to this file.
get_filename_component(_BOOST_CMAKEDIR "${CMAKE_CURRENT_LIST_DIR}/../" ABSOLUTE)
get_filename_component(_BOOST_INCLUDEDIR "${_BOOST_CMAKEDIR}/../../include/boost-1_70/" ABSOLUTE)
get_filename_component(_BOOST_LIBDIR "${_BOOST_CMAKEDIR}/../" ABSOLUTE)
# Create imported target Boost::filesystem
add_library(Boost::filesystem UNKNOWN IMPORTED)
set_target_properties(Boost::filesystem PROPERTIES
INTERFACE_INCLUDE_DIRECTORIES "${_BOOST_INCLUDEDIR}"
INTERFACE_COMPILE_DEFINITIONS "BOOST_ALL_NO_LIB"
)
include(${CMAKE_CURRENT_LIST_DIR}/../BoostDetectToolset-1.70.0.cmake)
if(Boost_DEBUG)
message(STATUS "Scanning ${CMAKE_CURRENT_LIST_DIR}/libboost_filesystem-variant*.cmake")
endif()
file(GLOB __boost_variants "${CMAKE_CURRENT_LIST_DIR}/libboost_filesystem-variant*.cmake")
macro(_BOOST_SKIPPED fname reason)
if(Boost_DEBUG)
message(STATUS " ... skipped ${fname} (${reason})")
endif()
list(APPEND __boost_skipped "${fname} (${reason})")
endmacro()
foreach(f IN LISTS __boost_variants)
if(Boost_DEBUG)
message(STATUS " Including ${f}")
endif()
include(${f})
endforeach()
unset(_BOOST_LIBDIR)
unset(_BOOST_INCLUDEDIR)
unset(_BOOST_CMAKEDIR)
get_target_property(__boost_configs Boost::filesystem IMPORTED_CONFIGURATIONS)
if(__boost_variants AND NOT __boost_configs)
message(STATUS "No suitable boost_filesystem variant has been identified!")
if(NOT Boost_DEBUG)
foreach(s IN LISTS __boost_skipped)
message(STATUS " ${s}")
endforeach()
endif()
set(boost_filesystem_FOUND 0)
set(boost_filesystem_NOT_FOUND_MESSAGE "No suitable build variant has been found.")
unset(__boost_skipped)
unset(__boost_configs)
unset(__boost_variants)
unset(_BOOST_FILESYSTEM_DEPS)
return()
endif()
unset(__boost_skipped)
unset(__boost_configs)
unset(__boost_variants)
if(_BOOST_FILESYSTEM_DEPS)
list(REMOVE_DUPLICATES _BOOST_FILESYSTEM_DEPS)
message(STATUS "Adding boost_filesystem dependencies: ${_BOOST_FILESYSTEM_DEPS}")
endif()
foreach(dep_boost_filesystem IN LISTS _BOOST_FILESYSTEM_DEPS)
set(_BOOST_QUIET)
if(boost_filesystem_FIND_QUIETLY)
set(_BOOST_QUIET QUIET)
endif()
set(_BOOST_REQUIRED)
if(boost_filesystem_FIND_REQUIRED)
set(_BOOST_REQUIRED REQUIRED)
endif()
get_filename_component(_BOOST_CMAKEDIR "${CMAKE_CURRENT_LIST_DIR}/../" ABSOLUTE)
find_package(boost_${dep_boost_filesystem} 1.70.0 EXACT CONFIG ${_BOOST_REQUIRED} ${_BOOST_QUIET} HINTS ${_BOOST_CMAKEDIR})
set_property(TARGET Boost::filesystem APPEND PROPERTY INTERFACE_LINK_LIBRARIES Boost::${dep_boost_filesystem})
unset(_BOOST_QUIET)
unset(_BOOST_REQUIRED)
unset(_BOOST_CMAKEDIR)
if(NOT boost_${dep_boost_filesystem}_FOUND)
set(boost_filesystem_FOUND 0)
set(boost_filesystem_NOT_FOUND_MESSAGE "A required dependency, boost_${dep_boost_filesystem}, has not been found.")
unset(_BOOST_FILESYSTEM_DEPS)
return()
endif()
endforeach()
unset(_BOOST_FILESYSTEM_DEPS)

View File

@@ -0,0 +1,72 @@
# Generated by Boost 1.70.0
# address-model=64
if(CMAKE_SIZEOF_VOID_P EQUAL 4)
_BOOST_SKIPPED("boost_filesystem-vc142-mt-gd-x64-1_70.lib" "64 bit, need 32")
return()
endif()
# layout=versioned
# toolset=vc142
if(Boost_COMPILER AND NOT Boost_COMPILER STREQUAL "vc142")
_BOOST_SKIPPED("boost_filesystem-vc142-mt-gd-x64-1_70.lib" "vc142, Boost_COMPILER=${Boost_COMPILER}")
return()
endif()
if(BOOST_DETECTED_TOOLSET AND NOT BOOST_DETECTED_TOOLSET STREQUAL "vc142")
_BOOST_SKIPPED("boost_filesystem-vc142-mt-gd-x64-1_70.lib" "vc142, detected ${BOOST_DETECTED_TOOLSET}, set Boost_COMPILER to override")
return()
endif()
# link=shared
if(NOT "${Boost_USE_STATIC_LIBS}" STREQUAL "" AND Boost_USE_STATIC_LIBS)
_BOOST_SKIPPED("boost_filesystem-vc142-mt-gd-x64-1_70.lib" "shared, Boost_USE_STATIC_LIBS=${Boost_USE_STATIC_LIBS}")
return()
endif()
if(NOT BUILD_SHARED_LIBS)
_BOOST_SKIPPED("boost_filesystem-vc142-mt-gd-x64-1_70.lib" "shared, BUILD_SHARED_LIBS not ON, set Boost_USE_STATIC_LIBS=OFF to override")
return()
endif()
# runtime-link=shared
if(Boost_USE_STATIC_RUNTIME)
_BOOST_SKIPPED("boost_filesystem-vc142-mt-gd-x64-1_70.lib" "shared runtime, Boost_USE_STATIC_RUNTIME=${Boost_USE_STATIC_RUNTIME}")
return()
endif()
# runtime-debugging=on
if(NOT "${Boost_USE_DEBUG_RUNTIME}" STREQUAL "" AND NOT Boost_USE_DEBUG_RUNTIME)
_BOOST_SKIPPED("boost_filesystem-vc142-mt-gd-x64-1_70.lib" "debug runtime, Boost_USE_DEBUG_RUNTIME=${Boost_USE_DEBUG_RUNTIME}")
return()
endif()
# threading=multi
# variant=debug
if(NOT "${Boost_USE_DEBUG_LIBS}" STREQUAL "" AND NOT Boost_USE_DEBUG_LIBS)
_BOOST_SKIPPED("boost_filesystem-vc142-mt-gd-x64-1_70.lib" "debug, Boost_USE_DEBUG_LIBS=${Boost_USE_DEBUG_LIBS}")
return()
endif()
message(STATUS " boost_filesystem-vc142-mt-gd-x64-1_70.lib")
# Target file name: boost_filesystem-vc142-mt-gd-x64-1_70.lib
set_property(TARGET Boost::filesystem APPEND PROPERTY IMPORTED_CONFIGURATIONS DEBUG)
set_target_properties(Boost::filesystem PROPERTIES
IMPORTED_LINK_INTERFACE_LANGUAGES_DEBUG CXX
IMPORTED_LOCATION_DEBUG "${_BOOST_LIBDIR}/boost_filesystem-vc142-mt-gd-x64-1_70.lib"
)
set_target_properties(Boost::filesystem PROPERTIES
INTERFACE_COMPILE_DEFINITIONS "BOOST_FILESYSTEM_DYN_LINK"
)
list(APPEND _BOOST_FILESYSTEM_DEPS headers)

View File

@@ -0,0 +1,72 @@
# Generated by Boost 1.70.0
# address-model=64
if(CMAKE_SIZEOF_VOID_P EQUAL 4)
_BOOST_SKIPPED("boost_filesystem-vc142-mt-x64-1_70.lib" "64 bit, need 32")
return()
endif()
# layout=versioned
# toolset=vc142
if(Boost_COMPILER AND NOT Boost_COMPILER STREQUAL "vc142")
_BOOST_SKIPPED("boost_filesystem-vc142-mt-x64-1_70.lib" "vc142, Boost_COMPILER=${Boost_COMPILER}")
return()
endif()
if(BOOST_DETECTED_TOOLSET AND NOT BOOST_DETECTED_TOOLSET STREQUAL "vc142")
_BOOST_SKIPPED("boost_filesystem-vc142-mt-x64-1_70.lib" "vc142, detected ${BOOST_DETECTED_TOOLSET}, set Boost_COMPILER to override")
return()
endif()
# link=shared
if(NOT "${Boost_USE_STATIC_LIBS}" STREQUAL "" AND Boost_USE_STATIC_LIBS)
_BOOST_SKIPPED("boost_filesystem-vc142-mt-x64-1_70.lib" "shared, Boost_USE_STATIC_LIBS=${Boost_USE_STATIC_LIBS}")
return()
endif()
if(NOT BUILD_SHARED_LIBS)
_BOOST_SKIPPED("boost_filesystem-vc142-mt-x64-1_70.lib" "shared, BUILD_SHARED_LIBS not ON, set Boost_USE_STATIC_LIBS=OFF to override")
return()
endif()
# runtime-link=shared
if(Boost_USE_STATIC_RUNTIME)
_BOOST_SKIPPED("boost_filesystem-vc142-mt-x64-1_70.lib" "shared runtime, Boost_USE_STATIC_RUNTIME=${Boost_USE_STATIC_RUNTIME}")
return()
endif()
# runtime-debugging=off
if(Boost_USE_DEBUG_RUNTIME)
_BOOST_SKIPPED("boost_filesystem-vc142-mt-x64-1_70.lib" "release runtime, Boost_USE_DEBUG_RUNTIME=${Boost_USE_DEBUG_RUNTIME}")
return()
endif()
# threading=multi
# variant=release
if(NOT "${Boost_USE_RELEASE_LIBS}" STREQUAL "" AND NOT Boost_USE_RELEASE_LIBS)
_BOOST_SKIPPED("boost_filesystem-vc142-mt-x64-1_70.lib" "release, Boost_USE_RELEASE_LIBS=${Boost_USE_RELEASE_LIBS}")
return()
endif()
message(STATUS " boost_filesystem-vc142-mt-x64-1_70.lib")
# Target file name: boost_filesystem-vc142-mt-x64-1_70.lib
set_property(TARGET Boost::filesystem APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE)
set_target_properties(Boost::filesystem PROPERTIES
IMPORTED_LINK_INTERFACE_LANGUAGES_RELEASE CXX
IMPORTED_LOCATION_RELEASE "${_BOOST_LIBDIR}/boost_filesystem-vc142-mt-x64-1_70.lib"
)
set_target_properties(Boost::filesystem PROPERTIES
INTERFACE_COMPILE_DEFINITIONS "BOOST_FILESYSTEM_DYN_LINK"
)
list(APPEND _BOOST_FILESYSTEM_DEPS headers)

View File

@@ -0,0 +1,12 @@
# Generated by Boost 1.70.0
set(PACKAGE_VERSION 1.70.0)
if(PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION)
set(PACKAGE_VERSION_COMPATIBLE FALSE)
else()
set(PACKAGE_VERSION_COMPATIBLE TRUE)
if(PACKAGE_FIND_VERSION STREQUAL PACKAGE_VERSION)
set(PACKAGE_VERSION_EXACT TRUE)
endif()
endif()

View File

@@ -0,0 +1,98 @@
# Generated by Boost 1.70.0
if(TARGET Boost::graph)
return()
endif()
message(STATUS "Found boost_graph ${boost_graph_VERSION} at ${boost_graph_DIR}")
# Compute the include and library directories relative to this file.
get_filename_component(_BOOST_CMAKEDIR "${CMAKE_CURRENT_LIST_DIR}/../" ABSOLUTE)
get_filename_component(_BOOST_INCLUDEDIR "${_BOOST_CMAKEDIR}/../../include/boost-1_70/" ABSOLUTE)
get_filename_component(_BOOST_LIBDIR "${_BOOST_CMAKEDIR}/../" ABSOLUTE)
# Create imported target Boost::graph
add_library(Boost::graph UNKNOWN IMPORTED)
set_target_properties(Boost::graph PROPERTIES
INTERFACE_INCLUDE_DIRECTORIES "${_BOOST_INCLUDEDIR}"
INTERFACE_COMPILE_DEFINITIONS "BOOST_ALL_NO_LIB"
)
include(${CMAKE_CURRENT_LIST_DIR}/../BoostDetectToolset-1.70.0.cmake)
if(Boost_DEBUG)
message(STATUS "Scanning ${CMAKE_CURRENT_LIST_DIR}/libboost_graph-variant*.cmake")
endif()
file(GLOB __boost_variants "${CMAKE_CURRENT_LIST_DIR}/libboost_graph-variant*.cmake")
macro(_BOOST_SKIPPED fname reason)
if(Boost_DEBUG)
message(STATUS " ... skipped ${fname} (${reason})")
endif()
list(APPEND __boost_skipped "${fname} (${reason})")
endmacro()
foreach(f IN LISTS __boost_variants)
if(Boost_DEBUG)
message(STATUS " Including ${f}")
endif()
include(${f})
endforeach()
unset(_BOOST_LIBDIR)
unset(_BOOST_INCLUDEDIR)
unset(_BOOST_CMAKEDIR)
get_target_property(__boost_configs Boost::graph IMPORTED_CONFIGURATIONS)
if(__boost_variants AND NOT __boost_configs)
message(STATUS "No suitable boost_graph variant has been identified!")
if(NOT Boost_DEBUG)
foreach(s IN LISTS __boost_skipped)
message(STATUS " ${s}")
endforeach()
endif()
set(boost_graph_FOUND 0)
set(boost_graph_NOT_FOUND_MESSAGE "No suitable build variant has been found.")
unset(__boost_skipped)
unset(__boost_configs)
unset(__boost_variants)
unset(_BOOST_GRAPH_DEPS)
return()
endif()
unset(__boost_skipped)
unset(__boost_configs)
unset(__boost_variants)
if(_BOOST_GRAPH_DEPS)
list(REMOVE_DUPLICATES _BOOST_GRAPH_DEPS)
message(STATUS "Adding boost_graph dependencies: ${_BOOST_GRAPH_DEPS}")
endif()
foreach(dep_boost_graph IN LISTS _BOOST_GRAPH_DEPS)
set(_BOOST_QUIET)
if(boost_graph_FIND_QUIETLY)
set(_BOOST_QUIET QUIET)
endif()
set(_BOOST_REQUIRED)
if(boost_graph_FIND_REQUIRED)
set(_BOOST_REQUIRED REQUIRED)
endif()
get_filename_component(_BOOST_CMAKEDIR "${CMAKE_CURRENT_LIST_DIR}/../" ABSOLUTE)
find_package(boost_${dep_boost_graph} 1.70.0 EXACT CONFIG ${_BOOST_REQUIRED} ${_BOOST_QUIET} HINTS ${_BOOST_CMAKEDIR})
set_property(TARGET Boost::graph APPEND PROPERTY INTERFACE_LINK_LIBRARIES Boost::${dep_boost_graph})
unset(_BOOST_QUIET)
unset(_BOOST_REQUIRED)
unset(_BOOST_CMAKEDIR)
if(NOT boost_${dep_boost_graph}_FOUND)
set(boost_graph_FOUND 0)
set(boost_graph_NOT_FOUND_MESSAGE "A required dependency, boost_${dep_boost_graph}, has not been found.")
unset(_BOOST_GRAPH_DEPS)
return()
endif()
endforeach()
unset(_BOOST_GRAPH_DEPS)

View File

@@ -0,0 +1,72 @@
# Generated by Boost 1.70.0
# address-model=64
if(CMAKE_SIZEOF_VOID_P EQUAL 4)
_BOOST_SKIPPED("boost_graph-vc142-mt-gd-x64-1_70.lib" "64 bit, need 32")
return()
endif()
# layout=versioned
# toolset=vc142
if(Boost_COMPILER AND NOT Boost_COMPILER STREQUAL "vc142")
_BOOST_SKIPPED("boost_graph-vc142-mt-gd-x64-1_70.lib" "vc142, Boost_COMPILER=${Boost_COMPILER}")
return()
endif()
if(BOOST_DETECTED_TOOLSET AND NOT BOOST_DETECTED_TOOLSET STREQUAL "vc142")
_BOOST_SKIPPED("boost_graph-vc142-mt-gd-x64-1_70.lib" "vc142, detected ${BOOST_DETECTED_TOOLSET}, set Boost_COMPILER to override")
return()
endif()
# link=shared
if(NOT "${Boost_USE_STATIC_LIBS}" STREQUAL "" AND Boost_USE_STATIC_LIBS)
_BOOST_SKIPPED("boost_graph-vc142-mt-gd-x64-1_70.lib" "shared, Boost_USE_STATIC_LIBS=${Boost_USE_STATIC_LIBS}")
return()
endif()
if(NOT BUILD_SHARED_LIBS)
_BOOST_SKIPPED("boost_graph-vc142-mt-gd-x64-1_70.lib" "shared, BUILD_SHARED_LIBS not ON, set Boost_USE_STATIC_LIBS=OFF to override")
return()
endif()
# runtime-link=shared
if(Boost_USE_STATIC_RUNTIME)
_BOOST_SKIPPED("boost_graph-vc142-mt-gd-x64-1_70.lib" "shared runtime, Boost_USE_STATIC_RUNTIME=${Boost_USE_STATIC_RUNTIME}")
return()
endif()
# runtime-debugging=on
if(NOT "${Boost_USE_DEBUG_RUNTIME}" STREQUAL "" AND NOT Boost_USE_DEBUG_RUNTIME)
_BOOST_SKIPPED("boost_graph-vc142-mt-gd-x64-1_70.lib" "debug runtime, Boost_USE_DEBUG_RUNTIME=${Boost_USE_DEBUG_RUNTIME}")
return()
endif()
# threading=multi
# variant=debug
if(NOT "${Boost_USE_DEBUG_LIBS}" STREQUAL "" AND NOT Boost_USE_DEBUG_LIBS)
_BOOST_SKIPPED("boost_graph-vc142-mt-gd-x64-1_70.lib" "debug, Boost_USE_DEBUG_LIBS=${Boost_USE_DEBUG_LIBS}")
return()
endif()
message(STATUS " boost_graph-vc142-mt-gd-x64-1_70.lib")
# Target file name: boost_graph-vc142-mt-gd-x64-1_70.lib
set_property(TARGET Boost::graph APPEND PROPERTY IMPORTED_CONFIGURATIONS DEBUG)
set_target_properties(Boost::graph PROPERTIES
IMPORTED_LINK_INTERFACE_LANGUAGES_DEBUG CXX
IMPORTED_LOCATION_DEBUG "${_BOOST_LIBDIR}/boost_graph-vc142-mt-gd-x64-1_70.lib"
)
set_target_properties(Boost::graph PROPERTIES
INTERFACE_COMPILE_DEFINITIONS "BOOST_GRAPH_DYN_LINK"
)
list(APPEND _BOOST_GRAPH_DEPS regex headers)

View File

@@ -0,0 +1,72 @@
# Generated by Boost 1.70.0
# address-model=64
if(CMAKE_SIZEOF_VOID_P EQUAL 4)
_BOOST_SKIPPED("boost_graph-vc142-mt-x64-1_70.lib" "64 bit, need 32")
return()
endif()
# layout=versioned
# toolset=vc142
if(Boost_COMPILER AND NOT Boost_COMPILER STREQUAL "vc142")
_BOOST_SKIPPED("boost_graph-vc142-mt-x64-1_70.lib" "vc142, Boost_COMPILER=${Boost_COMPILER}")
return()
endif()
if(BOOST_DETECTED_TOOLSET AND NOT BOOST_DETECTED_TOOLSET STREQUAL "vc142")
_BOOST_SKIPPED("boost_graph-vc142-mt-x64-1_70.lib" "vc142, detected ${BOOST_DETECTED_TOOLSET}, set Boost_COMPILER to override")
return()
endif()
# link=shared
if(NOT "${Boost_USE_STATIC_LIBS}" STREQUAL "" AND Boost_USE_STATIC_LIBS)
_BOOST_SKIPPED("boost_graph-vc142-mt-x64-1_70.lib" "shared, Boost_USE_STATIC_LIBS=${Boost_USE_STATIC_LIBS}")
return()
endif()
if(NOT BUILD_SHARED_LIBS)
_BOOST_SKIPPED("boost_graph-vc142-mt-x64-1_70.lib" "shared, BUILD_SHARED_LIBS not ON, set Boost_USE_STATIC_LIBS=OFF to override")
return()
endif()
# runtime-link=shared
if(Boost_USE_STATIC_RUNTIME)
_BOOST_SKIPPED("boost_graph-vc142-mt-x64-1_70.lib" "shared runtime, Boost_USE_STATIC_RUNTIME=${Boost_USE_STATIC_RUNTIME}")
return()
endif()
# runtime-debugging=off
if(Boost_USE_DEBUG_RUNTIME)
_BOOST_SKIPPED("boost_graph-vc142-mt-x64-1_70.lib" "release runtime, Boost_USE_DEBUG_RUNTIME=${Boost_USE_DEBUG_RUNTIME}")
return()
endif()
# threading=multi
# variant=release
if(NOT "${Boost_USE_RELEASE_LIBS}" STREQUAL "" AND NOT Boost_USE_RELEASE_LIBS)
_BOOST_SKIPPED("boost_graph-vc142-mt-x64-1_70.lib" "release, Boost_USE_RELEASE_LIBS=${Boost_USE_RELEASE_LIBS}")
return()
endif()
message(STATUS " boost_graph-vc142-mt-x64-1_70.lib")
# Target file name: boost_graph-vc142-mt-x64-1_70.lib
set_property(TARGET Boost::graph APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE)
set_target_properties(Boost::graph PROPERTIES
IMPORTED_LINK_INTERFACE_LANGUAGES_RELEASE CXX
IMPORTED_LOCATION_RELEASE "${_BOOST_LIBDIR}/boost_graph-vc142-mt-x64-1_70.lib"
)
set_target_properties(Boost::graph PROPERTIES
INTERFACE_COMPILE_DEFINITIONS "BOOST_GRAPH_DYN_LINK"
)
list(APPEND _BOOST_GRAPH_DEPS regex headers)

View File

@@ -0,0 +1,12 @@
# Generated by Boost 1.70.0
set(PACKAGE_VERSION 1.70.0)
if(PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION)
set(PACKAGE_VERSION_COMPATIBLE FALSE)
else()
set(PACKAGE_VERSION_COMPATIBLE TRUE)
if(PACKAGE_FIND_VERSION STREQUAL PACKAGE_VERSION)
set(PACKAGE_VERSION_EXACT TRUE)
endif()
endif()

View File

@@ -0,0 +1,98 @@
# Generated by Boost 1.70.0
if(TARGET Boost::graph_parallel)
return()
endif()
message(STATUS "Found boost_graph_parallel ${boost_graph_parallel_VERSION} at ${boost_graph_parallel_DIR}")
# Compute the include and library directories relative to this file.
get_filename_component(_BOOST_CMAKEDIR "${CMAKE_CURRENT_LIST_DIR}/../" ABSOLUTE)
get_filename_component(_BOOST_INCLUDEDIR "${_BOOST_CMAKEDIR}/../../include/boost-1_70/" ABSOLUTE)
get_filename_component(_BOOST_LIBDIR "${_BOOST_CMAKEDIR}/../" ABSOLUTE)
# Create imported target Boost::graph_parallel
add_library(Boost::graph_parallel UNKNOWN IMPORTED)
set_target_properties(Boost::graph_parallel PROPERTIES
INTERFACE_INCLUDE_DIRECTORIES "${_BOOST_INCLUDEDIR}"
INTERFACE_COMPILE_DEFINITIONS "BOOST_ALL_NO_LIB"
)
include(${CMAKE_CURRENT_LIST_DIR}/../BoostDetectToolset-1.70.0.cmake)
if(Boost_DEBUG)
message(STATUS "Scanning ${CMAKE_CURRENT_LIST_DIR}/libboost_graph_parallel-variant*.cmake")
endif()
file(GLOB __boost_variants "${CMAKE_CURRENT_LIST_DIR}/libboost_graph_parallel-variant*.cmake")
macro(_BOOST_SKIPPED fname reason)
if(Boost_DEBUG)
message(STATUS " ... skipped ${fname} (${reason})")
endif()
list(APPEND __boost_skipped "${fname} (${reason})")
endmacro()
foreach(f IN LISTS __boost_variants)
if(Boost_DEBUG)
message(STATUS " Including ${f}")
endif()
include(${f})
endforeach()
unset(_BOOST_LIBDIR)
unset(_BOOST_INCLUDEDIR)
unset(_BOOST_CMAKEDIR)
get_target_property(__boost_configs Boost::graph_parallel IMPORTED_CONFIGURATIONS)
if(__boost_variants AND NOT __boost_configs)
message(STATUS "No suitable boost_graph_parallel variant has been identified!")
if(NOT Boost_DEBUG)
foreach(s IN LISTS __boost_skipped)
message(STATUS " ${s}")
endforeach()
endif()
set(boost_graph_parallel_FOUND 0)
set(boost_graph_parallel_NOT_FOUND_MESSAGE "No suitable build variant has been found.")
unset(__boost_skipped)
unset(__boost_configs)
unset(__boost_variants)
unset(_BOOST_GRAPH_PARALLEL_DEPS)
return()
endif()
unset(__boost_skipped)
unset(__boost_configs)
unset(__boost_variants)
if(_BOOST_GRAPH_PARALLEL_DEPS)
list(REMOVE_DUPLICATES _BOOST_GRAPH_PARALLEL_DEPS)
message(STATUS "Adding boost_graph_parallel dependencies: ${_BOOST_GRAPH_PARALLEL_DEPS}")
endif()
foreach(dep_boost_graph_parallel IN LISTS _BOOST_GRAPH_PARALLEL_DEPS)
set(_BOOST_QUIET)
if(boost_graph_parallel_FIND_QUIETLY)
set(_BOOST_QUIET QUIET)
endif()
set(_BOOST_REQUIRED)
if(boost_graph_parallel_FIND_REQUIRED)
set(_BOOST_REQUIRED REQUIRED)
endif()
get_filename_component(_BOOST_CMAKEDIR "${CMAKE_CURRENT_LIST_DIR}/../" ABSOLUTE)
find_package(boost_${dep_boost_graph_parallel} 1.70.0 EXACT CONFIG ${_BOOST_REQUIRED} ${_BOOST_QUIET} HINTS ${_BOOST_CMAKEDIR})
set_property(TARGET Boost::graph_parallel APPEND PROPERTY INTERFACE_LINK_LIBRARIES Boost::${dep_boost_graph_parallel})
unset(_BOOST_QUIET)
unset(_BOOST_REQUIRED)
unset(_BOOST_CMAKEDIR)
if(NOT boost_${dep_boost_graph_parallel}_FOUND)
set(boost_graph_parallel_FOUND 0)
set(boost_graph_parallel_NOT_FOUND_MESSAGE "A required dependency, boost_${dep_boost_graph_parallel}, has not been found.")
unset(_BOOST_GRAPH_PARALLEL_DEPS)
return()
endif()
endforeach()
unset(_BOOST_GRAPH_PARALLEL_DEPS)

View File

@@ -0,0 +1,61 @@
# Generated by Boost 1.70.0
# address-model=64
if(CMAKE_SIZEOF_VOID_P EQUAL 4)
return()
endif()
# layout=versioned
# toolset=vc142
if(Boost_COMPILER AND NOT Boost_COMPILER STREQUAL "vc142")
return()
endif()
if(BOOST_DETECTED_TOOLSET AND NOT BOOST_DETECTED_TOOLSET STREQUAL "vc142")
return()
endif()
# link=shared
if(NOT "${Boost_USE_STATIC_LIBS}" STREQUAL "" AND Boost_USE_STATIC_LIBS)
return()
endif()
if(NOT BUILD_SHARED_LIBS)
return()
endif()
# runtime-link=shared
if(Boost_USE_STATIC_RUNTIME)
return()
endif()
# runtime-debugging=on
if(NOT "${Boost_USE_DEBUG_RUNTIME}" STREQUAL "" AND NOT Boost_USE_DEBUG_RUNTIME)
return()
endif()
# threading=multi
# variant=debug
if(NOT "${Boost_USE_DEBUG_LIBS}" STREQUAL "" AND NOT Boost_USE_DEBUG_LIBS)
return()
endif()
set_property(TARGET Boost::graph_parallel APPEND PROPERTY IMPORTED_CONFIGURATIONS DEBUG)
set_target_properties(Boost::graph_parallel PROPERTIES
IMPORTED_LINK_INTERFACE_LANGUAGES_DEBUG CXX
)
set_target_properties(Boost::graph_parallel PROPERTIES
INTERFACE_COMPILE_DEFINITIONS "BOOST_GRAPH_PARALLEL_DYN_LINK"
)
list(APPEND _BOOST_GRAPH_PARALLEL_DEPS headers)

View File

@@ -0,0 +1,61 @@
# Generated by Boost 1.70.0
# address-model=64
if(CMAKE_SIZEOF_VOID_P EQUAL 4)
return()
endif()
# layout=versioned
# toolset=vc142
if(Boost_COMPILER AND NOT Boost_COMPILER STREQUAL "vc142")
return()
endif()
if(BOOST_DETECTED_TOOLSET AND NOT BOOST_DETECTED_TOOLSET STREQUAL "vc142")
return()
endif()
# link=shared
if(NOT "${Boost_USE_STATIC_LIBS}" STREQUAL "" AND Boost_USE_STATIC_LIBS)
return()
endif()
if(NOT BUILD_SHARED_LIBS)
return()
endif()
# runtime-link=shared
if(Boost_USE_STATIC_RUNTIME)
return()
endif()
# runtime-debugging=off
if(Boost_USE_DEBUG_RUNTIME)
return()
endif()
# threading=multi
# variant=release
if(NOT "${Boost_USE_RELEASE_LIBS}" STREQUAL "" AND NOT Boost_USE_RELEASE_LIBS)
return()
endif()
set_property(TARGET Boost::graph_parallel APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE)
set_target_properties(Boost::graph_parallel PROPERTIES
IMPORTED_LINK_INTERFACE_LANGUAGES_RELEASE CXX
)
set_target_properties(Boost::graph_parallel PROPERTIES
INTERFACE_COMPILE_DEFINITIONS "BOOST_GRAPH_PARALLEL_DYN_LINK"
)
list(APPEND _BOOST_GRAPH_PARALLEL_DEPS headers)

View File

@@ -0,0 +1,12 @@
# Generated by Boost 1.70.0
set(PACKAGE_VERSION 1.70.0)
if(PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION)
set(PACKAGE_VERSION_COMPATIBLE FALSE)
else()
set(PACKAGE_VERSION_COMPATIBLE TRUE)
if(PACKAGE_FIND_VERSION STREQUAL PACKAGE_VERSION)
set(PACKAGE_VERSION_EXACT TRUE)
endif()
endif()

View File

@@ -0,0 +1,20 @@
# Generated by Boost 1.70.0
if(TARGET Boost::headers)
return()
endif()
message(STATUS "Found boost_headers ${boost_headers_VERSION} at ${boost_headers_DIR}")
# Compute the include and library directories relative to this file.
get_filename_component(_BOOST_CMAKEDIR "${CMAKE_CURRENT_LIST_DIR}/../" ABSOLUTE)
get_filename_component(_BOOST_INCLUDEDIR "${_BOOST_CMAKEDIR}/../../include/boost-1_70/" ABSOLUTE)
get_filename_component(_BOOST_LIBDIR "${_BOOST_CMAKEDIR}/../" ABSOLUTE)
# Create imported target Boost::headers
add_library(Boost::headers INTERFACE IMPORTED)
set_target_properties(Boost::headers PROPERTIES
INTERFACE_INCLUDE_DIRECTORIES "${_BOOST_INCLUDEDIR}"
INTERFACE_COMPILE_DEFINITIONS "BOOST_ALL_NO_LIB"
)

View File

@@ -0,0 +1,12 @@
# Generated by Boost 1.70.0
set(PACKAGE_VERSION 1.70.0)
if(PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION)
set(PACKAGE_VERSION_COMPATIBLE FALSE)
else()
set(PACKAGE_VERSION_COMPATIBLE TRUE)
if(PACKAGE_FIND_VERSION STREQUAL PACKAGE_VERSION)
set(PACKAGE_VERSION_EXACT TRUE)
endif()
endif()

View File

@@ -0,0 +1,98 @@
# Generated by Boost 1.70.0
if(TARGET Boost::iostreams)
return()
endif()
message(STATUS "Found boost_iostreams ${boost_iostreams_VERSION} at ${boost_iostreams_DIR}")
# Compute the include and library directories relative to this file.
get_filename_component(_BOOST_CMAKEDIR "${CMAKE_CURRENT_LIST_DIR}/../" ABSOLUTE)
get_filename_component(_BOOST_INCLUDEDIR "${_BOOST_CMAKEDIR}/../../include/boost-1_70/" ABSOLUTE)
get_filename_component(_BOOST_LIBDIR "${_BOOST_CMAKEDIR}/../" ABSOLUTE)
# Create imported target Boost::iostreams
add_library(Boost::iostreams UNKNOWN IMPORTED)
set_target_properties(Boost::iostreams PROPERTIES
INTERFACE_INCLUDE_DIRECTORIES "${_BOOST_INCLUDEDIR}"
INTERFACE_COMPILE_DEFINITIONS "BOOST_ALL_NO_LIB"
)
include(${CMAKE_CURRENT_LIST_DIR}/../BoostDetectToolset-1.70.0.cmake)
if(Boost_DEBUG)
message(STATUS "Scanning ${CMAKE_CURRENT_LIST_DIR}/libboost_iostreams-variant*.cmake")
endif()
file(GLOB __boost_variants "${CMAKE_CURRENT_LIST_DIR}/libboost_iostreams-variant*.cmake")
macro(_BOOST_SKIPPED fname reason)
if(Boost_DEBUG)
message(STATUS " ... skipped ${fname} (${reason})")
endif()
list(APPEND __boost_skipped "${fname} (${reason})")
endmacro()
foreach(f IN LISTS __boost_variants)
if(Boost_DEBUG)
message(STATUS " Including ${f}")
endif()
include(${f})
endforeach()
unset(_BOOST_LIBDIR)
unset(_BOOST_INCLUDEDIR)
unset(_BOOST_CMAKEDIR)
get_target_property(__boost_configs Boost::iostreams IMPORTED_CONFIGURATIONS)
if(__boost_variants AND NOT __boost_configs)
message(STATUS "No suitable boost_iostreams variant has been identified!")
if(NOT Boost_DEBUG)
foreach(s IN LISTS __boost_skipped)
message(STATUS " ${s}")
endforeach()
endif()
set(boost_iostreams_FOUND 0)
set(boost_iostreams_NOT_FOUND_MESSAGE "No suitable build variant has been found.")
unset(__boost_skipped)
unset(__boost_configs)
unset(__boost_variants)
unset(_BOOST_IOSTREAMS_DEPS)
return()
endif()
unset(__boost_skipped)
unset(__boost_configs)
unset(__boost_variants)
if(_BOOST_IOSTREAMS_DEPS)
list(REMOVE_DUPLICATES _BOOST_IOSTREAMS_DEPS)
message(STATUS "Adding boost_iostreams dependencies: ${_BOOST_IOSTREAMS_DEPS}")
endif()
foreach(dep_boost_iostreams IN LISTS _BOOST_IOSTREAMS_DEPS)
set(_BOOST_QUIET)
if(boost_iostreams_FIND_QUIETLY)
set(_BOOST_QUIET QUIET)
endif()
set(_BOOST_REQUIRED)
if(boost_iostreams_FIND_REQUIRED)
set(_BOOST_REQUIRED REQUIRED)
endif()
get_filename_component(_BOOST_CMAKEDIR "${CMAKE_CURRENT_LIST_DIR}/../" ABSOLUTE)
find_package(boost_${dep_boost_iostreams} 1.70.0 EXACT CONFIG ${_BOOST_REQUIRED} ${_BOOST_QUIET} HINTS ${_BOOST_CMAKEDIR})
set_property(TARGET Boost::iostreams APPEND PROPERTY INTERFACE_LINK_LIBRARIES Boost::${dep_boost_iostreams})
unset(_BOOST_QUIET)
unset(_BOOST_REQUIRED)
unset(_BOOST_CMAKEDIR)
if(NOT boost_${dep_boost_iostreams}_FOUND)
set(boost_iostreams_FOUND 0)
set(boost_iostreams_NOT_FOUND_MESSAGE "A required dependency, boost_${dep_boost_iostreams}, has not been found.")
unset(_BOOST_IOSTREAMS_DEPS)
return()
endif()
endforeach()
unset(_BOOST_IOSTREAMS_DEPS)

View File

@@ -0,0 +1,72 @@
# Generated by Boost 1.70.0
# address-model=64
if(CMAKE_SIZEOF_VOID_P EQUAL 4)
_BOOST_SKIPPED("boost_iostreams-vc142-mt-gd-x64-1_70.lib" "64 bit, need 32")
return()
endif()
# layout=versioned
# toolset=vc142
if(Boost_COMPILER AND NOT Boost_COMPILER STREQUAL "vc142")
_BOOST_SKIPPED("boost_iostreams-vc142-mt-gd-x64-1_70.lib" "vc142, Boost_COMPILER=${Boost_COMPILER}")
return()
endif()
if(BOOST_DETECTED_TOOLSET AND NOT BOOST_DETECTED_TOOLSET STREQUAL "vc142")
_BOOST_SKIPPED("boost_iostreams-vc142-mt-gd-x64-1_70.lib" "vc142, detected ${BOOST_DETECTED_TOOLSET}, set Boost_COMPILER to override")
return()
endif()
# link=shared
if(NOT "${Boost_USE_STATIC_LIBS}" STREQUAL "" AND Boost_USE_STATIC_LIBS)
_BOOST_SKIPPED("boost_iostreams-vc142-mt-gd-x64-1_70.lib" "shared, Boost_USE_STATIC_LIBS=${Boost_USE_STATIC_LIBS}")
return()
endif()
if(NOT BUILD_SHARED_LIBS)
_BOOST_SKIPPED("boost_iostreams-vc142-mt-gd-x64-1_70.lib" "shared, BUILD_SHARED_LIBS not ON, set Boost_USE_STATIC_LIBS=OFF to override")
return()
endif()
# runtime-link=shared
if(Boost_USE_STATIC_RUNTIME)
_BOOST_SKIPPED("boost_iostreams-vc142-mt-gd-x64-1_70.lib" "shared runtime, Boost_USE_STATIC_RUNTIME=${Boost_USE_STATIC_RUNTIME}")
return()
endif()
# runtime-debugging=on
if(NOT "${Boost_USE_DEBUG_RUNTIME}" STREQUAL "" AND NOT Boost_USE_DEBUG_RUNTIME)
_BOOST_SKIPPED("boost_iostreams-vc142-mt-gd-x64-1_70.lib" "debug runtime, Boost_USE_DEBUG_RUNTIME=${Boost_USE_DEBUG_RUNTIME}")
return()
endif()
# threading=multi
# variant=debug
if(NOT "${Boost_USE_DEBUG_LIBS}" STREQUAL "" AND NOT Boost_USE_DEBUG_LIBS)
_BOOST_SKIPPED("boost_iostreams-vc142-mt-gd-x64-1_70.lib" "debug, Boost_USE_DEBUG_LIBS=${Boost_USE_DEBUG_LIBS}")
return()
endif()
message(STATUS " boost_iostreams-vc142-mt-gd-x64-1_70.lib")
# Target file name: boost_iostreams-vc142-mt-gd-x64-1_70.lib
set_property(TARGET Boost::iostreams APPEND PROPERTY IMPORTED_CONFIGURATIONS DEBUG)
set_target_properties(Boost::iostreams PROPERTIES
IMPORTED_LINK_INTERFACE_LANGUAGES_DEBUG CXX
IMPORTED_LOCATION_DEBUG "${_BOOST_LIBDIR}/boost_iostreams-vc142-mt-gd-x64-1_70.lib"
)
set_target_properties(Boost::iostreams PROPERTIES
INTERFACE_COMPILE_DEFINITIONS "BOOST_IOSTREAMS_DYN_LINK"
)
list(APPEND _BOOST_IOSTREAMS_DEPS headers)

View File

@@ -0,0 +1,72 @@
# Generated by Boost 1.70.0
# address-model=64
if(CMAKE_SIZEOF_VOID_P EQUAL 4)
_BOOST_SKIPPED("boost_iostreams-vc142-mt-x64-1_70.lib" "64 bit, need 32")
return()
endif()
# layout=versioned
# toolset=vc142
if(Boost_COMPILER AND NOT Boost_COMPILER STREQUAL "vc142")
_BOOST_SKIPPED("boost_iostreams-vc142-mt-x64-1_70.lib" "vc142, Boost_COMPILER=${Boost_COMPILER}")
return()
endif()
if(BOOST_DETECTED_TOOLSET AND NOT BOOST_DETECTED_TOOLSET STREQUAL "vc142")
_BOOST_SKIPPED("boost_iostreams-vc142-mt-x64-1_70.lib" "vc142, detected ${BOOST_DETECTED_TOOLSET}, set Boost_COMPILER to override")
return()
endif()
# link=shared
if(NOT "${Boost_USE_STATIC_LIBS}" STREQUAL "" AND Boost_USE_STATIC_LIBS)
_BOOST_SKIPPED("boost_iostreams-vc142-mt-x64-1_70.lib" "shared, Boost_USE_STATIC_LIBS=${Boost_USE_STATIC_LIBS}")
return()
endif()
if(NOT BUILD_SHARED_LIBS)
_BOOST_SKIPPED("boost_iostreams-vc142-mt-x64-1_70.lib" "shared, BUILD_SHARED_LIBS not ON, set Boost_USE_STATIC_LIBS=OFF to override")
return()
endif()
# runtime-link=shared
if(Boost_USE_STATIC_RUNTIME)
_BOOST_SKIPPED("boost_iostreams-vc142-mt-x64-1_70.lib" "shared runtime, Boost_USE_STATIC_RUNTIME=${Boost_USE_STATIC_RUNTIME}")
return()
endif()
# runtime-debugging=off
if(Boost_USE_DEBUG_RUNTIME)
_BOOST_SKIPPED("boost_iostreams-vc142-mt-x64-1_70.lib" "release runtime, Boost_USE_DEBUG_RUNTIME=${Boost_USE_DEBUG_RUNTIME}")
return()
endif()
# threading=multi
# variant=release
if(NOT "${Boost_USE_RELEASE_LIBS}" STREQUAL "" AND NOT Boost_USE_RELEASE_LIBS)
_BOOST_SKIPPED("boost_iostreams-vc142-mt-x64-1_70.lib" "release, Boost_USE_RELEASE_LIBS=${Boost_USE_RELEASE_LIBS}")
return()
endif()
message(STATUS " boost_iostreams-vc142-mt-x64-1_70.lib")
# Target file name: boost_iostreams-vc142-mt-x64-1_70.lib
set_property(TARGET Boost::iostreams APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE)
set_target_properties(Boost::iostreams PROPERTIES
IMPORTED_LINK_INTERFACE_LANGUAGES_RELEASE CXX
IMPORTED_LOCATION_RELEASE "${_BOOST_LIBDIR}/boost_iostreams-vc142-mt-x64-1_70.lib"
)
set_target_properties(Boost::iostreams PROPERTIES
INTERFACE_COMPILE_DEFINITIONS "BOOST_IOSTREAMS_DYN_LINK"
)
list(APPEND _BOOST_IOSTREAMS_DEPS headers)

View File

@@ -0,0 +1,12 @@
# Generated by Boost 1.70.0
set(PACKAGE_VERSION 1.70.0)
if(PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION)
set(PACKAGE_VERSION_COMPATIBLE FALSE)
else()
set(PACKAGE_VERSION_COMPATIBLE TRUE)
if(PACKAGE_FIND_VERSION STREQUAL PACKAGE_VERSION)
set(PACKAGE_VERSION_EXACT TRUE)
endif()
endif()

View File

@@ -0,0 +1,98 @@
# Generated by Boost 1.70.0
if(TARGET Boost::locale)
return()
endif()
message(STATUS "Found boost_locale ${boost_locale_VERSION} at ${boost_locale_DIR}")
# Compute the include and library directories relative to this file.
get_filename_component(_BOOST_CMAKEDIR "${CMAKE_CURRENT_LIST_DIR}/../" ABSOLUTE)
get_filename_component(_BOOST_INCLUDEDIR "${_BOOST_CMAKEDIR}/../../include/boost-1_70/" ABSOLUTE)
get_filename_component(_BOOST_LIBDIR "${_BOOST_CMAKEDIR}/../" ABSOLUTE)
# Create imported target Boost::locale
add_library(Boost::locale UNKNOWN IMPORTED)
set_target_properties(Boost::locale PROPERTIES
INTERFACE_INCLUDE_DIRECTORIES "${_BOOST_INCLUDEDIR}"
INTERFACE_COMPILE_DEFINITIONS "BOOST_ALL_NO_LIB"
)
include(${CMAKE_CURRENT_LIST_DIR}/../BoostDetectToolset-1.70.0.cmake)
if(Boost_DEBUG)
message(STATUS "Scanning ${CMAKE_CURRENT_LIST_DIR}/libboost_locale-variant*.cmake")
endif()
file(GLOB __boost_variants "${CMAKE_CURRENT_LIST_DIR}/libboost_locale-variant*.cmake")
macro(_BOOST_SKIPPED fname reason)
if(Boost_DEBUG)
message(STATUS " ... skipped ${fname} (${reason})")
endif()
list(APPEND __boost_skipped "${fname} (${reason})")
endmacro()
foreach(f IN LISTS __boost_variants)
if(Boost_DEBUG)
message(STATUS " Including ${f}")
endif()
include(${f})
endforeach()
unset(_BOOST_LIBDIR)
unset(_BOOST_INCLUDEDIR)
unset(_BOOST_CMAKEDIR)
get_target_property(__boost_configs Boost::locale IMPORTED_CONFIGURATIONS)
if(__boost_variants AND NOT __boost_configs)
message(STATUS "No suitable boost_locale variant has been identified!")
if(NOT Boost_DEBUG)
foreach(s IN LISTS __boost_skipped)
message(STATUS " ${s}")
endforeach()
endif()
set(boost_locale_FOUND 0)
set(boost_locale_NOT_FOUND_MESSAGE "No suitable build variant has been found.")
unset(__boost_skipped)
unset(__boost_configs)
unset(__boost_variants)
unset(_BOOST_LOCALE_DEPS)
return()
endif()
unset(__boost_skipped)
unset(__boost_configs)
unset(__boost_variants)
if(_BOOST_LOCALE_DEPS)
list(REMOVE_DUPLICATES _BOOST_LOCALE_DEPS)
message(STATUS "Adding boost_locale dependencies: ${_BOOST_LOCALE_DEPS}")
endif()
foreach(dep_boost_locale IN LISTS _BOOST_LOCALE_DEPS)
set(_BOOST_QUIET)
if(boost_locale_FIND_QUIETLY)
set(_BOOST_QUIET QUIET)
endif()
set(_BOOST_REQUIRED)
if(boost_locale_FIND_REQUIRED)
set(_BOOST_REQUIRED REQUIRED)
endif()
get_filename_component(_BOOST_CMAKEDIR "${CMAKE_CURRENT_LIST_DIR}/../" ABSOLUTE)
find_package(boost_${dep_boost_locale} 1.70.0 EXACT CONFIG ${_BOOST_REQUIRED} ${_BOOST_QUIET} HINTS ${_BOOST_CMAKEDIR})
set_property(TARGET Boost::locale APPEND PROPERTY INTERFACE_LINK_LIBRARIES Boost::${dep_boost_locale})
unset(_BOOST_QUIET)
unset(_BOOST_REQUIRED)
unset(_BOOST_CMAKEDIR)
if(NOT boost_${dep_boost_locale}_FOUND)
set(boost_locale_FOUND 0)
set(boost_locale_NOT_FOUND_MESSAGE "A required dependency, boost_${dep_boost_locale}, has not been found.")
unset(_BOOST_LOCALE_DEPS)
return()
endif()
endforeach()
unset(_BOOST_LOCALE_DEPS)

View File

@@ -0,0 +1,72 @@
# Generated by Boost 1.70.0
# address-model=64
if(CMAKE_SIZEOF_VOID_P EQUAL 4)
_BOOST_SKIPPED("boost_locale-vc142-mt-gd-x64-1_70.lib" "64 bit, need 32")
return()
endif()
# layout=versioned
# toolset=vc142
if(Boost_COMPILER AND NOT Boost_COMPILER STREQUAL "vc142")
_BOOST_SKIPPED("boost_locale-vc142-mt-gd-x64-1_70.lib" "vc142, Boost_COMPILER=${Boost_COMPILER}")
return()
endif()
if(BOOST_DETECTED_TOOLSET AND NOT BOOST_DETECTED_TOOLSET STREQUAL "vc142")
_BOOST_SKIPPED("boost_locale-vc142-mt-gd-x64-1_70.lib" "vc142, detected ${BOOST_DETECTED_TOOLSET}, set Boost_COMPILER to override")
return()
endif()
# link=shared
if(NOT "${Boost_USE_STATIC_LIBS}" STREQUAL "" AND Boost_USE_STATIC_LIBS)
_BOOST_SKIPPED("boost_locale-vc142-mt-gd-x64-1_70.lib" "shared, Boost_USE_STATIC_LIBS=${Boost_USE_STATIC_LIBS}")
return()
endif()
if(NOT BUILD_SHARED_LIBS)
_BOOST_SKIPPED("boost_locale-vc142-mt-gd-x64-1_70.lib" "shared, BUILD_SHARED_LIBS not ON, set Boost_USE_STATIC_LIBS=OFF to override")
return()
endif()
# runtime-link=shared
if(Boost_USE_STATIC_RUNTIME)
_BOOST_SKIPPED("boost_locale-vc142-mt-gd-x64-1_70.lib" "shared runtime, Boost_USE_STATIC_RUNTIME=${Boost_USE_STATIC_RUNTIME}")
return()
endif()
# runtime-debugging=on
if(NOT "${Boost_USE_DEBUG_RUNTIME}" STREQUAL "" AND NOT Boost_USE_DEBUG_RUNTIME)
_BOOST_SKIPPED("boost_locale-vc142-mt-gd-x64-1_70.lib" "debug runtime, Boost_USE_DEBUG_RUNTIME=${Boost_USE_DEBUG_RUNTIME}")
return()
endif()
# threading=multi
# variant=debug
if(NOT "${Boost_USE_DEBUG_LIBS}" STREQUAL "" AND NOT Boost_USE_DEBUG_LIBS)
_BOOST_SKIPPED("boost_locale-vc142-mt-gd-x64-1_70.lib" "debug, Boost_USE_DEBUG_LIBS=${Boost_USE_DEBUG_LIBS}")
return()
endif()
message(STATUS " boost_locale-vc142-mt-gd-x64-1_70.lib")
# Target file name: boost_locale-vc142-mt-gd-x64-1_70.lib
set_property(TARGET Boost::locale APPEND PROPERTY IMPORTED_CONFIGURATIONS DEBUG)
set_target_properties(Boost::locale PROPERTIES
IMPORTED_LINK_INTERFACE_LANGUAGES_DEBUG CXX
IMPORTED_LOCATION_DEBUG "${_BOOST_LIBDIR}/boost_locale-vc142-mt-gd-x64-1_70.lib"
)
set_target_properties(Boost::locale PROPERTIES
INTERFACE_COMPILE_DEFINITIONS "BOOST_LOCALE_DYN_LINK"
)
list(APPEND _BOOST_LOCALE_DEPS system headers)

View File

@@ -0,0 +1,72 @@
# Generated by Boost 1.70.0
# address-model=64
if(CMAKE_SIZEOF_VOID_P EQUAL 4)
_BOOST_SKIPPED("boost_locale-vc142-mt-x64-1_70.lib" "64 bit, need 32")
return()
endif()
# layout=versioned
# toolset=vc142
if(Boost_COMPILER AND NOT Boost_COMPILER STREQUAL "vc142")
_BOOST_SKIPPED("boost_locale-vc142-mt-x64-1_70.lib" "vc142, Boost_COMPILER=${Boost_COMPILER}")
return()
endif()
if(BOOST_DETECTED_TOOLSET AND NOT BOOST_DETECTED_TOOLSET STREQUAL "vc142")
_BOOST_SKIPPED("boost_locale-vc142-mt-x64-1_70.lib" "vc142, detected ${BOOST_DETECTED_TOOLSET}, set Boost_COMPILER to override")
return()
endif()
# link=shared
if(NOT "${Boost_USE_STATIC_LIBS}" STREQUAL "" AND Boost_USE_STATIC_LIBS)
_BOOST_SKIPPED("boost_locale-vc142-mt-x64-1_70.lib" "shared, Boost_USE_STATIC_LIBS=${Boost_USE_STATIC_LIBS}")
return()
endif()
if(NOT BUILD_SHARED_LIBS)
_BOOST_SKIPPED("boost_locale-vc142-mt-x64-1_70.lib" "shared, BUILD_SHARED_LIBS not ON, set Boost_USE_STATIC_LIBS=OFF to override")
return()
endif()
# runtime-link=shared
if(Boost_USE_STATIC_RUNTIME)
_BOOST_SKIPPED("boost_locale-vc142-mt-x64-1_70.lib" "shared runtime, Boost_USE_STATIC_RUNTIME=${Boost_USE_STATIC_RUNTIME}")
return()
endif()
# runtime-debugging=off
if(Boost_USE_DEBUG_RUNTIME)
_BOOST_SKIPPED("boost_locale-vc142-mt-x64-1_70.lib" "release runtime, Boost_USE_DEBUG_RUNTIME=${Boost_USE_DEBUG_RUNTIME}")
return()
endif()
# threading=multi
# variant=release
if(NOT "${Boost_USE_RELEASE_LIBS}" STREQUAL "" AND NOT Boost_USE_RELEASE_LIBS)
_BOOST_SKIPPED("boost_locale-vc142-mt-x64-1_70.lib" "release, Boost_USE_RELEASE_LIBS=${Boost_USE_RELEASE_LIBS}")
return()
endif()
message(STATUS " boost_locale-vc142-mt-x64-1_70.lib")
# Target file name: boost_locale-vc142-mt-x64-1_70.lib
set_property(TARGET Boost::locale APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE)
set_target_properties(Boost::locale PROPERTIES
IMPORTED_LINK_INTERFACE_LANGUAGES_RELEASE CXX
IMPORTED_LOCATION_RELEASE "${_BOOST_LIBDIR}/boost_locale-vc142-mt-x64-1_70.lib"
)
set_target_properties(Boost::locale PROPERTIES
INTERFACE_COMPILE_DEFINITIONS "BOOST_LOCALE_DYN_LINK"
)
list(APPEND _BOOST_LOCALE_DEPS system headers)

View File

@@ -0,0 +1,12 @@
# Generated by Boost 1.70.0
set(PACKAGE_VERSION 1.70.0)
if(PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION)
set(PACKAGE_VERSION_COMPATIBLE FALSE)
else()
set(PACKAGE_VERSION_COMPATIBLE TRUE)
if(PACKAGE_FIND_VERSION STREQUAL PACKAGE_VERSION)
set(PACKAGE_VERSION_EXACT TRUE)
endif()
endif()

View File

@@ -0,0 +1,98 @@
# Generated by Boost 1.70.0
if(TARGET Boost::log)
return()
endif()
message(STATUS "Found boost_log ${boost_log_VERSION} at ${boost_log_DIR}")
# Compute the include and library directories relative to this file.
get_filename_component(_BOOST_CMAKEDIR "${CMAKE_CURRENT_LIST_DIR}/../" ABSOLUTE)
get_filename_component(_BOOST_INCLUDEDIR "${_BOOST_CMAKEDIR}/../../include/boost-1_70/" ABSOLUTE)
get_filename_component(_BOOST_LIBDIR "${_BOOST_CMAKEDIR}/../" ABSOLUTE)
# Create imported target Boost::log
add_library(Boost::log UNKNOWN IMPORTED)
set_target_properties(Boost::log PROPERTIES
INTERFACE_INCLUDE_DIRECTORIES "${_BOOST_INCLUDEDIR}"
INTERFACE_COMPILE_DEFINITIONS "BOOST_ALL_NO_LIB"
)
include(${CMAKE_CURRENT_LIST_DIR}/../BoostDetectToolset-1.70.0.cmake)
if(Boost_DEBUG)
message(STATUS "Scanning ${CMAKE_CURRENT_LIST_DIR}/libboost_log-variant*.cmake")
endif()
file(GLOB __boost_variants "${CMAKE_CURRENT_LIST_DIR}/libboost_log-variant*.cmake")
macro(_BOOST_SKIPPED fname reason)
if(Boost_DEBUG)
message(STATUS " ... skipped ${fname} (${reason})")
endif()
list(APPEND __boost_skipped "${fname} (${reason})")
endmacro()
foreach(f IN LISTS __boost_variants)
if(Boost_DEBUG)
message(STATUS " Including ${f}")
endif()
include(${f})
endforeach()
unset(_BOOST_LIBDIR)
unset(_BOOST_INCLUDEDIR)
unset(_BOOST_CMAKEDIR)
get_target_property(__boost_configs Boost::log IMPORTED_CONFIGURATIONS)
if(__boost_variants AND NOT __boost_configs)
message(STATUS "No suitable boost_log variant has been identified!")
if(NOT Boost_DEBUG)
foreach(s IN LISTS __boost_skipped)
message(STATUS " ${s}")
endforeach()
endif()
set(boost_log_FOUND 0)
set(boost_log_NOT_FOUND_MESSAGE "No suitable build variant has been found.")
unset(__boost_skipped)
unset(__boost_configs)
unset(__boost_variants)
unset(_BOOST_LOG_DEPS)
return()
endif()
unset(__boost_skipped)
unset(__boost_configs)
unset(__boost_variants)
if(_BOOST_LOG_DEPS)
list(REMOVE_DUPLICATES _BOOST_LOG_DEPS)
message(STATUS "Adding boost_log dependencies: ${_BOOST_LOG_DEPS}")
endif()
foreach(dep_boost_log IN LISTS _BOOST_LOG_DEPS)
set(_BOOST_QUIET)
if(boost_log_FIND_QUIETLY)
set(_BOOST_QUIET QUIET)
endif()
set(_BOOST_REQUIRED)
if(boost_log_FIND_REQUIRED)
set(_BOOST_REQUIRED REQUIRED)
endif()
get_filename_component(_BOOST_CMAKEDIR "${CMAKE_CURRENT_LIST_DIR}/../" ABSOLUTE)
find_package(boost_${dep_boost_log} 1.70.0 EXACT CONFIG ${_BOOST_REQUIRED} ${_BOOST_QUIET} HINTS ${_BOOST_CMAKEDIR})
set_property(TARGET Boost::log APPEND PROPERTY INTERFACE_LINK_LIBRARIES Boost::${dep_boost_log})
unset(_BOOST_QUIET)
unset(_BOOST_REQUIRED)
unset(_BOOST_CMAKEDIR)
if(NOT boost_${dep_boost_log}_FOUND)
set(boost_log_FOUND 0)
set(boost_log_NOT_FOUND_MESSAGE "A required dependency, boost_${dep_boost_log}, has not been found.")
unset(_BOOST_LOG_DEPS)
return()
endif()
endforeach()
unset(_BOOST_LOG_DEPS)

View File

@@ -0,0 +1,72 @@
# Generated by Boost 1.70.0
# address-model=64
if(CMAKE_SIZEOF_VOID_P EQUAL 4)
_BOOST_SKIPPED("boost_log-vc142-mt-gd-x64-1_70.lib" "64 bit, need 32")
return()
endif()
# layout=versioned
# toolset=vc142
if(Boost_COMPILER AND NOT Boost_COMPILER STREQUAL "vc142")
_BOOST_SKIPPED("boost_log-vc142-mt-gd-x64-1_70.lib" "vc142, Boost_COMPILER=${Boost_COMPILER}")
return()
endif()
if(BOOST_DETECTED_TOOLSET AND NOT BOOST_DETECTED_TOOLSET STREQUAL "vc142")
_BOOST_SKIPPED("boost_log-vc142-mt-gd-x64-1_70.lib" "vc142, detected ${BOOST_DETECTED_TOOLSET}, set Boost_COMPILER to override")
return()
endif()
# link=shared
if(NOT "${Boost_USE_STATIC_LIBS}" STREQUAL "" AND Boost_USE_STATIC_LIBS)
_BOOST_SKIPPED("boost_log-vc142-mt-gd-x64-1_70.lib" "shared, Boost_USE_STATIC_LIBS=${Boost_USE_STATIC_LIBS}")
return()
endif()
if(NOT BUILD_SHARED_LIBS)
_BOOST_SKIPPED("boost_log-vc142-mt-gd-x64-1_70.lib" "shared, BUILD_SHARED_LIBS not ON, set Boost_USE_STATIC_LIBS=OFF to override")
return()
endif()
# runtime-link=shared
if(Boost_USE_STATIC_RUNTIME)
_BOOST_SKIPPED("boost_log-vc142-mt-gd-x64-1_70.lib" "shared runtime, Boost_USE_STATIC_RUNTIME=${Boost_USE_STATIC_RUNTIME}")
return()
endif()
# runtime-debugging=on
if(NOT "${Boost_USE_DEBUG_RUNTIME}" STREQUAL "" AND NOT Boost_USE_DEBUG_RUNTIME)
_BOOST_SKIPPED("boost_log-vc142-mt-gd-x64-1_70.lib" "debug runtime, Boost_USE_DEBUG_RUNTIME=${Boost_USE_DEBUG_RUNTIME}")
return()
endif()
# threading=multi
# variant=debug
if(NOT "${Boost_USE_DEBUG_LIBS}" STREQUAL "" AND NOT Boost_USE_DEBUG_LIBS)
_BOOST_SKIPPED("boost_log-vc142-mt-gd-x64-1_70.lib" "debug, Boost_USE_DEBUG_LIBS=${Boost_USE_DEBUG_LIBS}")
return()
endif()
message(STATUS " boost_log-vc142-mt-gd-x64-1_70.lib")
# Target file name: boost_log-vc142-mt-gd-x64-1_70.lib
set_property(TARGET Boost::log APPEND PROPERTY IMPORTED_CONFIGURATIONS DEBUG)
set_target_properties(Boost::log PROPERTIES
IMPORTED_LINK_INTERFACE_LANGUAGES_DEBUG CXX
IMPORTED_LOCATION_DEBUG "${_BOOST_LIBDIR}/boost_log-vc142-mt-gd-x64-1_70.lib"
)
set_target_properties(Boost::log PROPERTIES
INTERFACE_COMPILE_DEFINITIONS "BOOST_LOG_DYN_LINK"
)
list(APPEND _BOOST_LOG_DEPS atomic chrono date_time filesystem regex thread headers)

View File

@@ -0,0 +1,72 @@
# Generated by Boost 1.70.0
# address-model=64
if(CMAKE_SIZEOF_VOID_P EQUAL 4)
_BOOST_SKIPPED("boost_log-vc142-mt-x64-1_70.lib" "64 bit, need 32")
return()
endif()
# layout=versioned
# toolset=vc142
if(Boost_COMPILER AND NOT Boost_COMPILER STREQUAL "vc142")
_BOOST_SKIPPED("boost_log-vc142-mt-x64-1_70.lib" "vc142, Boost_COMPILER=${Boost_COMPILER}")
return()
endif()
if(BOOST_DETECTED_TOOLSET AND NOT BOOST_DETECTED_TOOLSET STREQUAL "vc142")
_BOOST_SKIPPED("boost_log-vc142-mt-x64-1_70.lib" "vc142, detected ${BOOST_DETECTED_TOOLSET}, set Boost_COMPILER to override")
return()
endif()
# link=shared
if(NOT "${Boost_USE_STATIC_LIBS}" STREQUAL "" AND Boost_USE_STATIC_LIBS)
_BOOST_SKIPPED("boost_log-vc142-mt-x64-1_70.lib" "shared, Boost_USE_STATIC_LIBS=${Boost_USE_STATIC_LIBS}")
return()
endif()
if(NOT BUILD_SHARED_LIBS)
_BOOST_SKIPPED("boost_log-vc142-mt-x64-1_70.lib" "shared, BUILD_SHARED_LIBS not ON, set Boost_USE_STATIC_LIBS=OFF to override")
return()
endif()
# runtime-link=shared
if(Boost_USE_STATIC_RUNTIME)
_BOOST_SKIPPED("boost_log-vc142-mt-x64-1_70.lib" "shared runtime, Boost_USE_STATIC_RUNTIME=${Boost_USE_STATIC_RUNTIME}")
return()
endif()
# runtime-debugging=off
if(Boost_USE_DEBUG_RUNTIME)
_BOOST_SKIPPED("boost_log-vc142-mt-x64-1_70.lib" "release runtime, Boost_USE_DEBUG_RUNTIME=${Boost_USE_DEBUG_RUNTIME}")
return()
endif()
# threading=multi
# variant=release
if(NOT "${Boost_USE_RELEASE_LIBS}" STREQUAL "" AND NOT Boost_USE_RELEASE_LIBS)
_BOOST_SKIPPED("boost_log-vc142-mt-x64-1_70.lib" "release, Boost_USE_RELEASE_LIBS=${Boost_USE_RELEASE_LIBS}")
return()
endif()
message(STATUS " boost_log-vc142-mt-x64-1_70.lib")
# Target file name: boost_log-vc142-mt-x64-1_70.lib
set_property(TARGET Boost::log APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE)
set_target_properties(Boost::log PROPERTIES
IMPORTED_LINK_INTERFACE_LANGUAGES_RELEASE CXX
IMPORTED_LOCATION_RELEASE "${_BOOST_LIBDIR}/boost_log-vc142-mt-x64-1_70.lib"
)
set_target_properties(Boost::log PROPERTIES
INTERFACE_COMPILE_DEFINITIONS "BOOST_LOG_DYN_LINK"
)
list(APPEND _BOOST_LOG_DEPS atomic chrono date_time filesystem regex thread headers)

View File

@@ -0,0 +1,12 @@
# Generated by Boost 1.70.0
set(PACKAGE_VERSION 1.70.0)
if(PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION)
set(PACKAGE_VERSION_COMPATIBLE FALSE)
else()
set(PACKAGE_VERSION_COMPATIBLE TRUE)
if(PACKAGE_FIND_VERSION STREQUAL PACKAGE_VERSION)
set(PACKAGE_VERSION_EXACT TRUE)
endif()
endif()

View File

@@ -0,0 +1,98 @@
# Generated by Boost 1.70.0
if(TARGET Boost::log_setup)
return()
endif()
message(STATUS "Found boost_log_setup ${boost_log_setup_VERSION} at ${boost_log_setup_DIR}")
# Compute the include and library directories relative to this file.
get_filename_component(_BOOST_CMAKEDIR "${CMAKE_CURRENT_LIST_DIR}/../" ABSOLUTE)
get_filename_component(_BOOST_INCLUDEDIR "${_BOOST_CMAKEDIR}/../../include/boost-1_70/" ABSOLUTE)
get_filename_component(_BOOST_LIBDIR "${_BOOST_CMAKEDIR}/../" ABSOLUTE)
# Create imported target Boost::log_setup
add_library(Boost::log_setup UNKNOWN IMPORTED)
set_target_properties(Boost::log_setup PROPERTIES
INTERFACE_INCLUDE_DIRECTORIES "${_BOOST_INCLUDEDIR}"
INTERFACE_COMPILE_DEFINITIONS "BOOST_ALL_NO_LIB"
)
include(${CMAKE_CURRENT_LIST_DIR}/../BoostDetectToolset-1.70.0.cmake)
if(Boost_DEBUG)
message(STATUS "Scanning ${CMAKE_CURRENT_LIST_DIR}/libboost_log_setup-variant*.cmake")
endif()
file(GLOB __boost_variants "${CMAKE_CURRENT_LIST_DIR}/libboost_log_setup-variant*.cmake")
macro(_BOOST_SKIPPED fname reason)
if(Boost_DEBUG)
message(STATUS " ... skipped ${fname} (${reason})")
endif()
list(APPEND __boost_skipped "${fname} (${reason})")
endmacro()
foreach(f IN LISTS __boost_variants)
if(Boost_DEBUG)
message(STATUS " Including ${f}")
endif()
include(${f})
endforeach()
unset(_BOOST_LIBDIR)
unset(_BOOST_INCLUDEDIR)
unset(_BOOST_CMAKEDIR)
get_target_property(__boost_configs Boost::log_setup IMPORTED_CONFIGURATIONS)
if(__boost_variants AND NOT __boost_configs)
message(STATUS "No suitable boost_log_setup variant has been identified!")
if(NOT Boost_DEBUG)
foreach(s IN LISTS __boost_skipped)
message(STATUS " ${s}")
endforeach()
endif()
set(boost_log_setup_FOUND 0)
set(boost_log_setup_NOT_FOUND_MESSAGE "No suitable build variant has been found.")
unset(__boost_skipped)
unset(__boost_configs)
unset(__boost_variants)
unset(_BOOST_LOG_SETUP_DEPS)
return()
endif()
unset(__boost_skipped)
unset(__boost_configs)
unset(__boost_variants)
if(_BOOST_LOG_SETUP_DEPS)
list(REMOVE_DUPLICATES _BOOST_LOG_SETUP_DEPS)
message(STATUS "Adding boost_log_setup dependencies: ${_BOOST_LOG_SETUP_DEPS}")
endif()
foreach(dep_boost_log_setup IN LISTS _BOOST_LOG_SETUP_DEPS)
set(_BOOST_QUIET)
if(boost_log_setup_FIND_QUIETLY)
set(_BOOST_QUIET QUIET)
endif()
set(_BOOST_REQUIRED)
if(boost_log_setup_FIND_REQUIRED)
set(_BOOST_REQUIRED REQUIRED)
endif()
get_filename_component(_BOOST_CMAKEDIR "${CMAKE_CURRENT_LIST_DIR}/../" ABSOLUTE)
find_package(boost_${dep_boost_log_setup} 1.70.0 EXACT CONFIG ${_BOOST_REQUIRED} ${_BOOST_QUIET} HINTS ${_BOOST_CMAKEDIR})
set_property(TARGET Boost::log_setup APPEND PROPERTY INTERFACE_LINK_LIBRARIES Boost::${dep_boost_log_setup})
unset(_BOOST_QUIET)
unset(_BOOST_REQUIRED)
unset(_BOOST_CMAKEDIR)
if(NOT boost_${dep_boost_log_setup}_FOUND)
set(boost_log_setup_FOUND 0)
set(boost_log_setup_NOT_FOUND_MESSAGE "A required dependency, boost_${dep_boost_log_setup}, has not been found.")
unset(_BOOST_LOG_SETUP_DEPS)
return()
endif()
endforeach()
unset(_BOOST_LOG_SETUP_DEPS)

View File

@@ -0,0 +1,72 @@
# Generated by Boost 1.70.0
# address-model=64
if(CMAKE_SIZEOF_VOID_P EQUAL 4)
_BOOST_SKIPPED("boost_log_setup-vc142-mt-gd-x64-1_70.lib" "64 bit, need 32")
return()
endif()
# layout=versioned
# toolset=vc142
if(Boost_COMPILER AND NOT Boost_COMPILER STREQUAL "vc142")
_BOOST_SKIPPED("boost_log_setup-vc142-mt-gd-x64-1_70.lib" "vc142, Boost_COMPILER=${Boost_COMPILER}")
return()
endif()
if(BOOST_DETECTED_TOOLSET AND NOT BOOST_DETECTED_TOOLSET STREQUAL "vc142")
_BOOST_SKIPPED("boost_log_setup-vc142-mt-gd-x64-1_70.lib" "vc142, detected ${BOOST_DETECTED_TOOLSET}, set Boost_COMPILER to override")
return()
endif()
# link=shared
if(NOT "${Boost_USE_STATIC_LIBS}" STREQUAL "" AND Boost_USE_STATIC_LIBS)
_BOOST_SKIPPED("boost_log_setup-vc142-mt-gd-x64-1_70.lib" "shared, Boost_USE_STATIC_LIBS=${Boost_USE_STATIC_LIBS}")
return()
endif()
if(NOT BUILD_SHARED_LIBS)
_BOOST_SKIPPED("boost_log_setup-vc142-mt-gd-x64-1_70.lib" "shared, BUILD_SHARED_LIBS not ON, set Boost_USE_STATIC_LIBS=OFF to override")
return()
endif()
# runtime-link=shared
if(Boost_USE_STATIC_RUNTIME)
_BOOST_SKIPPED("boost_log_setup-vc142-mt-gd-x64-1_70.lib" "shared runtime, Boost_USE_STATIC_RUNTIME=${Boost_USE_STATIC_RUNTIME}")
return()
endif()
# runtime-debugging=on
if(NOT "${Boost_USE_DEBUG_RUNTIME}" STREQUAL "" AND NOT Boost_USE_DEBUG_RUNTIME)
_BOOST_SKIPPED("boost_log_setup-vc142-mt-gd-x64-1_70.lib" "debug runtime, Boost_USE_DEBUG_RUNTIME=${Boost_USE_DEBUG_RUNTIME}")
return()
endif()
# threading=multi
# variant=debug
if(NOT "${Boost_USE_DEBUG_LIBS}" STREQUAL "" AND NOT Boost_USE_DEBUG_LIBS)
_BOOST_SKIPPED("boost_log_setup-vc142-mt-gd-x64-1_70.lib" "debug, Boost_USE_DEBUG_LIBS=${Boost_USE_DEBUG_LIBS}")
return()
endif()
message(STATUS " boost_log_setup-vc142-mt-gd-x64-1_70.lib")
# Target file name: boost_log_setup-vc142-mt-gd-x64-1_70.lib
set_property(TARGET Boost::log_setup APPEND PROPERTY IMPORTED_CONFIGURATIONS DEBUG)
set_target_properties(Boost::log_setup PROPERTIES
IMPORTED_LINK_INTERFACE_LANGUAGES_DEBUG CXX
IMPORTED_LOCATION_DEBUG "${_BOOST_LIBDIR}/boost_log_setup-vc142-mt-gd-x64-1_70.lib"
)
set_target_properties(Boost::log_setup PROPERTIES
INTERFACE_COMPILE_DEFINITIONS "BOOST_LOG_SETUP_DYN_LINK"
)
list(APPEND _BOOST_LOG_SETUP_DEPS atomic chrono date_time filesystem log regex thread headers)

View File

@@ -0,0 +1,72 @@
# Generated by Boost 1.70.0
# address-model=64
if(CMAKE_SIZEOF_VOID_P EQUAL 4)
_BOOST_SKIPPED("boost_log_setup-vc142-mt-x64-1_70.lib" "64 bit, need 32")
return()
endif()
# layout=versioned
# toolset=vc142
if(Boost_COMPILER AND NOT Boost_COMPILER STREQUAL "vc142")
_BOOST_SKIPPED("boost_log_setup-vc142-mt-x64-1_70.lib" "vc142, Boost_COMPILER=${Boost_COMPILER}")
return()
endif()
if(BOOST_DETECTED_TOOLSET AND NOT BOOST_DETECTED_TOOLSET STREQUAL "vc142")
_BOOST_SKIPPED("boost_log_setup-vc142-mt-x64-1_70.lib" "vc142, detected ${BOOST_DETECTED_TOOLSET}, set Boost_COMPILER to override")
return()
endif()
# link=shared
if(NOT "${Boost_USE_STATIC_LIBS}" STREQUAL "" AND Boost_USE_STATIC_LIBS)
_BOOST_SKIPPED("boost_log_setup-vc142-mt-x64-1_70.lib" "shared, Boost_USE_STATIC_LIBS=${Boost_USE_STATIC_LIBS}")
return()
endif()
if(NOT BUILD_SHARED_LIBS)
_BOOST_SKIPPED("boost_log_setup-vc142-mt-x64-1_70.lib" "shared, BUILD_SHARED_LIBS not ON, set Boost_USE_STATIC_LIBS=OFF to override")
return()
endif()
# runtime-link=shared
if(Boost_USE_STATIC_RUNTIME)
_BOOST_SKIPPED("boost_log_setup-vc142-mt-x64-1_70.lib" "shared runtime, Boost_USE_STATIC_RUNTIME=${Boost_USE_STATIC_RUNTIME}")
return()
endif()
# runtime-debugging=off
if(Boost_USE_DEBUG_RUNTIME)
_BOOST_SKIPPED("boost_log_setup-vc142-mt-x64-1_70.lib" "release runtime, Boost_USE_DEBUG_RUNTIME=${Boost_USE_DEBUG_RUNTIME}")
return()
endif()
# threading=multi
# variant=release
if(NOT "${Boost_USE_RELEASE_LIBS}" STREQUAL "" AND NOT Boost_USE_RELEASE_LIBS)
_BOOST_SKIPPED("boost_log_setup-vc142-mt-x64-1_70.lib" "release, Boost_USE_RELEASE_LIBS=${Boost_USE_RELEASE_LIBS}")
return()
endif()
message(STATUS " boost_log_setup-vc142-mt-x64-1_70.lib")
# Target file name: boost_log_setup-vc142-mt-x64-1_70.lib
set_property(TARGET Boost::log_setup APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE)
set_target_properties(Boost::log_setup PROPERTIES
IMPORTED_LINK_INTERFACE_LANGUAGES_RELEASE CXX
IMPORTED_LOCATION_RELEASE "${_BOOST_LIBDIR}/boost_log_setup-vc142-mt-x64-1_70.lib"
)
set_target_properties(Boost::log_setup PROPERTIES
INTERFACE_COMPILE_DEFINITIONS "BOOST_LOG_SETUP_DYN_LINK"
)
list(APPEND _BOOST_LOG_SETUP_DEPS atomic chrono date_time filesystem log regex thread headers)

View File

@@ -0,0 +1,12 @@
# Generated by Boost 1.70.0
set(PACKAGE_VERSION 1.70.0)
if(PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION)
set(PACKAGE_VERSION_COMPATIBLE FALSE)
else()
set(PACKAGE_VERSION_COMPATIBLE TRUE)
if(PACKAGE_FIND_VERSION STREQUAL PACKAGE_VERSION)
set(PACKAGE_VERSION_EXACT TRUE)
endif()
endif()

View File

@@ -0,0 +1,20 @@
# Generated by Boost 1.70.0
if(TARGET Boost::math)
return()
endif()
message(STATUS "Found boost_math ${boost_math_VERSION} at ${boost_math_DIR}")
# Compute the include and library directories relative to this file.
get_filename_component(_BOOST_CMAKEDIR "${CMAKE_CURRENT_LIST_DIR}/../" ABSOLUTE)
get_filename_component(_BOOST_INCLUDEDIR "${_BOOST_CMAKEDIR}/../../include/boost-1_70/" ABSOLUTE)
get_filename_component(_BOOST_LIBDIR "${_BOOST_CMAKEDIR}/../" ABSOLUTE)
# Create imported target Boost::math
add_library(Boost::math INTERFACE IMPORTED)
set_target_properties(Boost::math PROPERTIES
INTERFACE_INCLUDE_DIRECTORIES "${_BOOST_INCLUDEDIR}"
INTERFACE_COMPILE_DEFINITIONS "BOOST_ALL_NO_LIB"
)

View File

@@ -0,0 +1,12 @@
# Generated by Boost 1.70.0
set(PACKAGE_VERSION 1.70.0)
if(PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION)
set(PACKAGE_VERSION_COMPATIBLE FALSE)
else()
set(PACKAGE_VERSION_COMPATIBLE TRUE)
if(PACKAGE_FIND_VERSION STREQUAL PACKAGE_VERSION)
set(PACKAGE_VERSION_EXACT TRUE)
endif()
endif()

View File

@@ -0,0 +1,98 @@
# Generated by Boost 1.70.0
if(TARGET Boost::math_c99)
return()
endif()
message(STATUS "Found boost_math_c99 ${boost_math_c99_VERSION} at ${boost_math_c99_DIR}")
# Compute the include and library directories relative to this file.
get_filename_component(_BOOST_CMAKEDIR "${CMAKE_CURRENT_LIST_DIR}/../" ABSOLUTE)
get_filename_component(_BOOST_INCLUDEDIR "${_BOOST_CMAKEDIR}/../../include/boost-1_70/" ABSOLUTE)
get_filename_component(_BOOST_LIBDIR "${_BOOST_CMAKEDIR}/../" ABSOLUTE)
# Create imported target Boost::math_c99
add_library(Boost::math_c99 UNKNOWN IMPORTED)
set_target_properties(Boost::math_c99 PROPERTIES
INTERFACE_INCLUDE_DIRECTORIES "${_BOOST_INCLUDEDIR}"
INTERFACE_COMPILE_DEFINITIONS "BOOST_ALL_NO_LIB"
)
include(${CMAKE_CURRENT_LIST_DIR}/../BoostDetectToolset-1.70.0.cmake)
if(Boost_DEBUG)
message(STATUS "Scanning ${CMAKE_CURRENT_LIST_DIR}/libboost_math_c99-variant*.cmake")
endif()
file(GLOB __boost_variants "${CMAKE_CURRENT_LIST_DIR}/libboost_math_c99-variant*.cmake")
macro(_BOOST_SKIPPED fname reason)
if(Boost_DEBUG)
message(STATUS " ... skipped ${fname} (${reason})")
endif()
list(APPEND __boost_skipped "${fname} (${reason})")
endmacro()
foreach(f IN LISTS __boost_variants)
if(Boost_DEBUG)
message(STATUS " Including ${f}")
endif()
include(${f})
endforeach()
unset(_BOOST_LIBDIR)
unset(_BOOST_INCLUDEDIR)
unset(_BOOST_CMAKEDIR)
get_target_property(__boost_configs Boost::math_c99 IMPORTED_CONFIGURATIONS)
if(__boost_variants AND NOT __boost_configs)
message(STATUS "No suitable boost_math_c99 variant has been identified!")
if(NOT Boost_DEBUG)
foreach(s IN LISTS __boost_skipped)
message(STATUS " ${s}")
endforeach()
endif()
set(boost_math_c99_FOUND 0)
set(boost_math_c99_NOT_FOUND_MESSAGE "No suitable build variant has been found.")
unset(__boost_skipped)
unset(__boost_configs)
unset(__boost_variants)
unset(_BOOST_MATH_C99_DEPS)
return()
endif()
unset(__boost_skipped)
unset(__boost_configs)
unset(__boost_variants)
if(_BOOST_MATH_C99_DEPS)
list(REMOVE_DUPLICATES _BOOST_MATH_C99_DEPS)
message(STATUS "Adding boost_math_c99 dependencies: ${_BOOST_MATH_C99_DEPS}")
endif()
foreach(dep_boost_math_c99 IN LISTS _BOOST_MATH_C99_DEPS)
set(_BOOST_QUIET)
if(boost_math_c99_FIND_QUIETLY)
set(_BOOST_QUIET QUIET)
endif()
set(_BOOST_REQUIRED)
if(boost_math_c99_FIND_REQUIRED)
set(_BOOST_REQUIRED REQUIRED)
endif()
get_filename_component(_BOOST_CMAKEDIR "${CMAKE_CURRENT_LIST_DIR}/../" ABSOLUTE)
find_package(boost_${dep_boost_math_c99} 1.70.0 EXACT CONFIG ${_BOOST_REQUIRED} ${_BOOST_QUIET} HINTS ${_BOOST_CMAKEDIR})
set_property(TARGET Boost::math_c99 APPEND PROPERTY INTERFACE_LINK_LIBRARIES Boost::${dep_boost_math_c99})
unset(_BOOST_QUIET)
unset(_BOOST_REQUIRED)
unset(_BOOST_CMAKEDIR)
if(NOT boost_${dep_boost_math_c99}_FOUND)
set(boost_math_c99_FOUND 0)
set(boost_math_c99_NOT_FOUND_MESSAGE "A required dependency, boost_${dep_boost_math_c99}, has not been found.")
unset(_BOOST_MATH_C99_DEPS)
return()
endif()
endforeach()
unset(_BOOST_MATH_C99_DEPS)

View File

@@ -0,0 +1,72 @@
# Generated by Boost 1.70.0
# address-model=64
if(CMAKE_SIZEOF_VOID_P EQUAL 4)
_BOOST_SKIPPED("boost_math_c99-vc142-mt-gd-x64-1_70.lib" "64 bit, need 32")
return()
endif()
# layout=versioned
# toolset=vc142
if(Boost_COMPILER AND NOT Boost_COMPILER STREQUAL "vc142")
_BOOST_SKIPPED("boost_math_c99-vc142-mt-gd-x64-1_70.lib" "vc142, Boost_COMPILER=${Boost_COMPILER}")
return()
endif()
if(BOOST_DETECTED_TOOLSET AND NOT BOOST_DETECTED_TOOLSET STREQUAL "vc142")
_BOOST_SKIPPED("boost_math_c99-vc142-mt-gd-x64-1_70.lib" "vc142, detected ${BOOST_DETECTED_TOOLSET}, set Boost_COMPILER to override")
return()
endif()
# link=shared
if(NOT "${Boost_USE_STATIC_LIBS}" STREQUAL "" AND Boost_USE_STATIC_LIBS)
_BOOST_SKIPPED("boost_math_c99-vc142-mt-gd-x64-1_70.lib" "shared, Boost_USE_STATIC_LIBS=${Boost_USE_STATIC_LIBS}")
return()
endif()
if(NOT BUILD_SHARED_LIBS)
_BOOST_SKIPPED("boost_math_c99-vc142-mt-gd-x64-1_70.lib" "shared, BUILD_SHARED_LIBS not ON, set Boost_USE_STATIC_LIBS=OFF to override")
return()
endif()
# runtime-link=shared
if(Boost_USE_STATIC_RUNTIME)
_BOOST_SKIPPED("boost_math_c99-vc142-mt-gd-x64-1_70.lib" "shared runtime, Boost_USE_STATIC_RUNTIME=${Boost_USE_STATIC_RUNTIME}")
return()
endif()
# runtime-debugging=on
if(NOT "${Boost_USE_DEBUG_RUNTIME}" STREQUAL "" AND NOT Boost_USE_DEBUG_RUNTIME)
_BOOST_SKIPPED("boost_math_c99-vc142-mt-gd-x64-1_70.lib" "debug runtime, Boost_USE_DEBUG_RUNTIME=${Boost_USE_DEBUG_RUNTIME}")
return()
endif()
# threading=multi
# variant=debug
if(NOT "${Boost_USE_DEBUG_LIBS}" STREQUAL "" AND NOT Boost_USE_DEBUG_LIBS)
_BOOST_SKIPPED("boost_math_c99-vc142-mt-gd-x64-1_70.lib" "debug, Boost_USE_DEBUG_LIBS=${Boost_USE_DEBUG_LIBS}")
return()
endif()
message(STATUS " boost_math_c99-vc142-mt-gd-x64-1_70.lib")
# Target file name: boost_math_c99-vc142-mt-gd-x64-1_70.lib
set_property(TARGET Boost::math_c99 APPEND PROPERTY IMPORTED_CONFIGURATIONS DEBUG)
set_target_properties(Boost::math_c99 PROPERTIES
IMPORTED_LINK_INTERFACE_LANGUAGES_DEBUG CXX
IMPORTED_LOCATION_DEBUG "${_BOOST_LIBDIR}/boost_math_c99-vc142-mt-gd-x64-1_70.lib"
)
set_target_properties(Boost::math_c99 PROPERTIES
INTERFACE_COMPILE_DEFINITIONS "BOOST_MATH_C99_DYN_LINK"
)
list(APPEND _BOOST_MATH_C99_DEPS headers)

View File

@@ -0,0 +1,72 @@
# Generated by Boost 1.70.0
# address-model=64
if(CMAKE_SIZEOF_VOID_P EQUAL 4)
_BOOST_SKIPPED("boost_math_c99-vc142-mt-x64-1_70.lib" "64 bit, need 32")
return()
endif()
# layout=versioned
# toolset=vc142
if(Boost_COMPILER AND NOT Boost_COMPILER STREQUAL "vc142")
_BOOST_SKIPPED("boost_math_c99-vc142-mt-x64-1_70.lib" "vc142, Boost_COMPILER=${Boost_COMPILER}")
return()
endif()
if(BOOST_DETECTED_TOOLSET AND NOT BOOST_DETECTED_TOOLSET STREQUAL "vc142")
_BOOST_SKIPPED("boost_math_c99-vc142-mt-x64-1_70.lib" "vc142, detected ${BOOST_DETECTED_TOOLSET}, set Boost_COMPILER to override")
return()
endif()
# link=shared
if(NOT "${Boost_USE_STATIC_LIBS}" STREQUAL "" AND Boost_USE_STATIC_LIBS)
_BOOST_SKIPPED("boost_math_c99-vc142-mt-x64-1_70.lib" "shared, Boost_USE_STATIC_LIBS=${Boost_USE_STATIC_LIBS}")
return()
endif()
if(NOT BUILD_SHARED_LIBS)
_BOOST_SKIPPED("boost_math_c99-vc142-mt-x64-1_70.lib" "shared, BUILD_SHARED_LIBS not ON, set Boost_USE_STATIC_LIBS=OFF to override")
return()
endif()
# runtime-link=shared
if(Boost_USE_STATIC_RUNTIME)
_BOOST_SKIPPED("boost_math_c99-vc142-mt-x64-1_70.lib" "shared runtime, Boost_USE_STATIC_RUNTIME=${Boost_USE_STATIC_RUNTIME}")
return()
endif()
# runtime-debugging=off
if(Boost_USE_DEBUG_RUNTIME)
_BOOST_SKIPPED("boost_math_c99-vc142-mt-x64-1_70.lib" "release runtime, Boost_USE_DEBUG_RUNTIME=${Boost_USE_DEBUG_RUNTIME}")
return()
endif()
# threading=multi
# variant=release
if(NOT "${Boost_USE_RELEASE_LIBS}" STREQUAL "" AND NOT Boost_USE_RELEASE_LIBS)
_BOOST_SKIPPED("boost_math_c99-vc142-mt-x64-1_70.lib" "release, Boost_USE_RELEASE_LIBS=${Boost_USE_RELEASE_LIBS}")
return()
endif()
message(STATUS " boost_math_c99-vc142-mt-x64-1_70.lib")
# Target file name: boost_math_c99-vc142-mt-x64-1_70.lib
set_property(TARGET Boost::math_c99 APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE)
set_target_properties(Boost::math_c99 PROPERTIES
IMPORTED_LINK_INTERFACE_LANGUAGES_RELEASE CXX
IMPORTED_LOCATION_RELEASE "${_BOOST_LIBDIR}/boost_math_c99-vc142-mt-x64-1_70.lib"
)
set_target_properties(Boost::math_c99 PROPERTIES
INTERFACE_COMPILE_DEFINITIONS "BOOST_MATH_C99_DYN_LINK"
)
list(APPEND _BOOST_MATH_C99_DEPS headers)

View File

@@ -0,0 +1,12 @@
# Generated by Boost 1.70.0
set(PACKAGE_VERSION 1.70.0)
if(PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION)
set(PACKAGE_VERSION_COMPATIBLE FALSE)
else()
set(PACKAGE_VERSION_COMPATIBLE TRUE)
if(PACKAGE_FIND_VERSION STREQUAL PACKAGE_VERSION)
set(PACKAGE_VERSION_EXACT TRUE)
endif()
endif()

View File

@@ -0,0 +1,98 @@
# Generated by Boost 1.70.0
if(TARGET Boost::math_c99f)
return()
endif()
message(STATUS "Found boost_math_c99f ${boost_math_c99f_VERSION} at ${boost_math_c99f_DIR}")
# Compute the include and library directories relative to this file.
get_filename_component(_BOOST_CMAKEDIR "${CMAKE_CURRENT_LIST_DIR}/../" ABSOLUTE)
get_filename_component(_BOOST_INCLUDEDIR "${_BOOST_CMAKEDIR}/../../include/boost-1_70/" ABSOLUTE)
get_filename_component(_BOOST_LIBDIR "${_BOOST_CMAKEDIR}/../" ABSOLUTE)
# Create imported target Boost::math_c99f
add_library(Boost::math_c99f UNKNOWN IMPORTED)
set_target_properties(Boost::math_c99f PROPERTIES
INTERFACE_INCLUDE_DIRECTORIES "${_BOOST_INCLUDEDIR}"
INTERFACE_COMPILE_DEFINITIONS "BOOST_ALL_NO_LIB"
)
include(${CMAKE_CURRENT_LIST_DIR}/../BoostDetectToolset-1.70.0.cmake)
if(Boost_DEBUG)
message(STATUS "Scanning ${CMAKE_CURRENT_LIST_DIR}/libboost_math_c99f-variant*.cmake")
endif()
file(GLOB __boost_variants "${CMAKE_CURRENT_LIST_DIR}/libboost_math_c99f-variant*.cmake")
macro(_BOOST_SKIPPED fname reason)
if(Boost_DEBUG)
message(STATUS " ... skipped ${fname} (${reason})")
endif()
list(APPEND __boost_skipped "${fname} (${reason})")
endmacro()
foreach(f IN LISTS __boost_variants)
if(Boost_DEBUG)
message(STATUS " Including ${f}")
endif()
include(${f})
endforeach()
unset(_BOOST_LIBDIR)
unset(_BOOST_INCLUDEDIR)
unset(_BOOST_CMAKEDIR)
get_target_property(__boost_configs Boost::math_c99f IMPORTED_CONFIGURATIONS)
if(__boost_variants AND NOT __boost_configs)
message(STATUS "No suitable boost_math_c99f variant has been identified!")
if(NOT Boost_DEBUG)
foreach(s IN LISTS __boost_skipped)
message(STATUS " ${s}")
endforeach()
endif()
set(boost_math_c99f_FOUND 0)
set(boost_math_c99f_NOT_FOUND_MESSAGE "No suitable build variant has been found.")
unset(__boost_skipped)
unset(__boost_configs)
unset(__boost_variants)
unset(_BOOST_MATH_C99F_DEPS)
return()
endif()
unset(__boost_skipped)
unset(__boost_configs)
unset(__boost_variants)
if(_BOOST_MATH_C99F_DEPS)
list(REMOVE_DUPLICATES _BOOST_MATH_C99F_DEPS)
message(STATUS "Adding boost_math_c99f dependencies: ${_BOOST_MATH_C99F_DEPS}")
endif()
foreach(dep_boost_math_c99f IN LISTS _BOOST_MATH_C99F_DEPS)
set(_BOOST_QUIET)
if(boost_math_c99f_FIND_QUIETLY)
set(_BOOST_QUIET QUIET)
endif()
set(_BOOST_REQUIRED)
if(boost_math_c99f_FIND_REQUIRED)
set(_BOOST_REQUIRED REQUIRED)
endif()
get_filename_component(_BOOST_CMAKEDIR "${CMAKE_CURRENT_LIST_DIR}/../" ABSOLUTE)
find_package(boost_${dep_boost_math_c99f} 1.70.0 EXACT CONFIG ${_BOOST_REQUIRED} ${_BOOST_QUIET} HINTS ${_BOOST_CMAKEDIR})
set_property(TARGET Boost::math_c99f APPEND PROPERTY INTERFACE_LINK_LIBRARIES Boost::${dep_boost_math_c99f})
unset(_BOOST_QUIET)
unset(_BOOST_REQUIRED)
unset(_BOOST_CMAKEDIR)
if(NOT boost_${dep_boost_math_c99f}_FOUND)
set(boost_math_c99f_FOUND 0)
set(boost_math_c99f_NOT_FOUND_MESSAGE "A required dependency, boost_${dep_boost_math_c99f}, has not been found.")
unset(_BOOST_MATH_C99F_DEPS)
return()
endif()
endforeach()
unset(_BOOST_MATH_C99F_DEPS)

View File

@@ -0,0 +1,72 @@
# Generated by Boost 1.70.0
# address-model=64
if(CMAKE_SIZEOF_VOID_P EQUAL 4)
_BOOST_SKIPPED("boost_math_c99f-vc142-mt-gd-x64-1_70.lib" "64 bit, need 32")
return()
endif()
# layout=versioned
# toolset=vc142
if(Boost_COMPILER AND NOT Boost_COMPILER STREQUAL "vc142")
_BOOST_SKIPPED("boost_math_c99f-vc142-mt-gd-x64-1_70.lib" "vc142, Boost_COMPILER=${Boost_COMPILER}")
return()
endif()
if(BOOST_DETECTED_TOOLSET AND NOT BOOST_DETECTED_TOOLSET STREQUAL "vc142")
_BOOST_SKIPPED("boost_math_c99f-vc142-mt-gd-x64-1_70.lib" "vc142, detected ${BOOST_DETECTED_TOOLSET}, set Boost_COMPILER to override")
return()
endif()
# link=shared
if(NOT "${Boost_USE_STATIC_LIBS}" STREQUAL "" AND Boost_USE_STATIC_LIBS)
_BOOST_SKIPPED("boost_math_c99f-vc142-mt-gd-x64-1_70.lib" "shared, Boost_USE_STATIC_LIBS=${Boost_USE_STATIC_LIBS}")
return()
endif()
if(NOT BUILD_SHARED_LIBS)
_BOOST_SKIPPED("boost_math_c99f-vc142-mt-gd-x64-1_70.lib" "shared, BUILD_SHARED_LIBS not ON, set Boost_USE_STATIC_LIBS=OFF to override")
return()
endif()
# runtime-link=shared
if(Boost_USE_STATIC_RUNTIME)
_BOOST_SKIPPED("boost_math_c99f-vc142-mt-gd-x64-1_70.lib" "shared runtime, Boost_USE_STATIC_RUNTIME=${Boost_USE_STATIC_RUNTIME}")
return()
endif()
# runtime-debugging=on
if(NOT "${Boost_USE_DEBUG_RUNTIME}" STREQUAL "" AND NOT Boost_USE_DEBUG_RUNTIME)
_BOOST_SKIPPED("boost_math_c99f-vc142-mt-gd-x64-1_70.lib" "debug runtime, Boost_USE_DEBUG_RUNTIME=${Boost_USE_DEBUG_RUNTIME}")
return()
endif()
# threading=multi
# variant=debug
if(NOT "${Boost_USE_DEBUG_LIBS}" STREQUAL "" AND NOT Boost_USE_DEBUG_LIBS)
_BOOST_SKIPPED("boost_math_c99f-vc142-mt-gd-x64-1_70.lib" "debug, Boost_USE_DEBUG_LIBS=${Boost_USE_DEBUG_LIBS}")
return()
endif()
message(STATUS " boost_math_c99f-vc142-mt-gd-x64-1_70.lib")
# Target file name: boost_math_c99f-vc142-mt-gd-x64-1_70.lib
set_property(TARGET Boost::math_c99f APPEND PROPERTY IMPORTED_CONFIGURATIONS DEBUG)
set_target_properties(Boost::math_c99f PROPERTIES
IMPORTED_LINK_INTERFACE_LANGUAGES_DEBUG CXX
IMPORTED_LOCATION_DEBUG "${_BOOST_LIBDIR}/boost_math_c99f-vc142-mt-gd-x64-1_70.lib"
)
set_target_properties(Boost::math_c99f PROPERTIES
INTERFACE_COMPILE_DEFINITIONS "BOOST_MATH_C99F_DYN_LINK"
)
list(APPEND _BOOST_MATH_C99F_DEPS headers)

View File

@@ -0,0 +1,72 @@
# Generated by Boost 1.70.0
# address-model=64
if(CMAKE_SIZEOF_VOID_P EQUAL 4)
_BOOST_SKIPPED("boost_math_c99f-vc142-mt-x64-1_70.lib" "64 bit, need 32")
return()
endif()
# layout=versioned
# toolset=vc142
if(Boost_COMPILER AND NOT Boost_COMPILER STREQUAL "vc142")
_BOOST_SKIPPED("boost_math_c99f-vc142-mt-x64-1_70.lib" "vc142, Boost_COMPILER=${Boost_COMPILER}")
return()
endif()
if(BOOST_DETECTED_TOOLSET AND NOT BOOST_DETECTED_TOOLSET STREQUAL "vc142")
_BOOST_SKIPPED("boost_math_c99f-vc142-mt-x64-1_70.lib" "vc142, detected ${BOOST_DETECTED_TOOLSET}, set Boost_COMPILER to override")
return()
endif()
# link=shared
if(NOT "${Boost_USE_STATIC_LIBS}" STREQUAL "" AND Boost_USE_STATIC_LIBS)
_BOOST_SKIPPED("boost_math_c99f-vc142-mt-x64-1_70.lib" "shared, Boost_USE_STATIC_LIBS=${Boost_USE_STATIC_LIBS}")
return()
endif()
if(NOT BUILD_SHARED_LIBS)
_BOOST_SKIPPED("boost_math_c99f-vc142-mt-x64-1_70.lib" "shared, BUILD_SHARED_LIBS not ON, set Boost_USE_STATIC_LIBS=OFF to override")
return()
endif()
# runtime-link=shared
if(Boost_USE_STATIC_RUNTIME)
_BOOST_SKIPPED("boost_math_c99f-vc142-mt-x64-1_70.lib" "shared runtime, Boost_USE_STATIC_RUNTIME=${Boost_USE_STATIC_RUNTIME}")
return()
endif()
# runtime-debugging=off
if(Boost_USE_DEBUG_RUNTIME)
_BOOST_SKIPPED("boost_math_c99f-vc142-mt-x64-1_70.lib" "release runtime, Boost_USE_DEBUG_RUNTIME=${Boost_USE_DEBUG_RUNTIME}")
return()
endif()
# threading=multi
# variant=release
if(NOT "${Boost_USE_RELEASE_LIBS}" STREQUAL "" AND NOT Boost_USE_RELEASE_LIBS)
_BOOST_SKIPPED("boost_math_c99f-vc142-mt-x64-1_70.lib" "release, Boost_USE_RELEASE_LIBS=${Boost_USE_RELEASE_LIBS}")
return()
endif()
message(STATUS " boost_math_c99f-vc142-mt-x64-1_70.lib")
# Target file name: boost_math_c99f-vc142-mt-x64-1_70.lib
set_property(TARGET Boost::math_c99f APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE)
set_target_properties(Boost::math_c99f PROPERTIES
IMPORTED_LINK_INTERFACE_LANGUAGES_RELEASE CXX
IMPORTED_LOCATION_RELEASE "${_BOOST_LIBDIR}/boost_math_c99f-vc142-mt-x64-1_70.lib"
)
set_target_properties(Boost::math_c99f PROPERTIES
INTERFACE_COMPILE_DEFINITIONS "BOOST_MATH_C99F_DYN_LINK"
)
list(APPEND _BOOST_MATH_C99F_DEPS headers)

View File

@@ -0,0 +1,12 @@
# Generated by Boost 1.70.0
set(PACKAGE_VERSION 1.70.0)
if(PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION)
set(PACKAGE_VERSION_COMPATIBLE FALSE)
else()
set(PACKAGE_VERSION_COMPATIBLE TRUE)
if(PACKAGE_FIND_VERSION STREQUAL PACKAGE_VERSION)
set(PACKAGE_VERSION_EXACT TRUE)
endif()
endif()

View File

@@ -0,0 +1,98 @@
# Generated by Boost 1.70.0
if(TARGET Boost::math_c99l)
return()
endif()
message(STATUS "Found boost_math_c99l ${boost_math_c99l_VERSION} at ${boost_math_c99l_DIR}")
# Compute the include and library directories relative to this file.
get_filename_component(_BOOST_CMAKEDIR "${CMAKE_CURRENT_LIST_DIR}/../" ABSOLUTE)
get_filename_component(_BOOST_INCLUDEDIR "${_BOOST_CMAKEDIR}/../../include/boost-1_70/" ABSOLUTE)
get_filename_component(_BOOST_LIBDIR "${_BOOST_CMAKEDIR}/../" ABSOLUTE)
# Create imported target Boost::math_c99l
add_library(Boost::math_c99l UNKNOWN IMPORTED)
set_target_properties(Boost::math_c99l PROPERTIES
INTERFACE_INCLUDE_DIRECTORIES "${_BOOST_INCLUDEDIR}"
INTERFACE_COMPILE_DEFINITIONS "BOOST_ALL_NO_LIB"
)
include(${CMAKE_CURRENT_LIST_DIR}/../BoostDetectToolset-1.70.0.cmake)
if(Boost_DEBUG)
message(STATUS "Scanning ${CMAKE_CURRENT_LIST_DIR}/libboost_math_c99l-variant*.cmake")
endif()
file(GLOB __boost_variants "${CMAKE_CURRENT_LIST_DIR}/libboost_math_c99l-variant*.cmake")
macro(_BOOST_SKIPPED fname reason)
if(Boost_DEBUG)
message(STATUS " ... skipped ${fname} (${reason})")
endif()
list(APPEND __boost_skipped "${fname} (${reason})")
endmacro()
foreach(f IN LISTS __boost_variants)
if(Boost_DEBUG)
message(STATUS " Including ${f}")
endif()
include(${f})
endforeach()
unset(_BOOST_LIBDIR)
unset(_BOOST_INCLUDEDIR)
unset(_BOOST_CMAKEDIR)
get_target_property(__boost_configs Boost::math_c99l IMPORTED_CONFIGURATIONS)
if(__boost_variants AND NOT __boost_configs)
message(STATUS "No suitable boost_math_c99l variant has been identified!")
if(NOT Boost_DEBUG)
foreach(s IN LISTS __boost_skipped)
message(STATUS " ${s}")
endforeach()
endif()
set(boost_math_c99l_FOUND 0)
set(boost_math_c99l_NOT_FOUND_MESSAGE "No suitable build variant has been found.")
unset(__boost_skipped)
unset(__boost_configs)
unset(__boost_variants)
unset(_BOOST_MATH_C99L_DEPS)
return()
endif()
unset(__boost_skipped)
unset(__boost_configs)
unset(__boost_variants)
if(_BOOST_MATH_C99L_DEPS)
list(REMOVE_DUPLICATES _BOOST_MATH_C99L_DEPS)
message(STATUS "Adding boost_math_c99l dependencies: ${_BOOST_MATH_C99L_DEPS}")
endif()
foreach(dep_boost_math_c99l IN LISTS _BOOST_MATH_C99L_DEPS)
set(_BOOST_QUIET)
if(boost_math_c99l_FIND_QUIETLY)
set(_BOOST_QUIET QUIET)
endif()
set(_BOOST_REQUIRED)
if(boost_math_c99l_FIND_REQUIRED)
set(_BOOST_REQUIRED REQUIRED)
endif()
get_filename_component(_BOOST_CMAKEDIR "${CMAKE_CURRENT_LIST_DIR}/../" ABSOLUTE)
find_package(boost_${dep_boost_math_c99l} 1.70.0 EXACT CONFIG ${_BOOST_REQUIRED} ${_BOOST_QUIET} HINTS ${_BOOST_CMAKEDIR})
set_property(TARGET Boost::math_c99l APPEND PROPERTY INTERFACE_LINK_LIBRARIES Boost::${dep_boost_math_c99l})
unset(_BOOST_QUIET)
unset(_BOOST_REQUIRED)
unset(_BOOST_CMAKEDIR)
if(NOT boost_${dep_boost_math_c99l}_FOUND)
set(boost_math_c99l_FOUND 0)
set(boost_math_c99l_NOT_FOUND_MESSAGE "A required dependency, boost_${dep_boost_math_c99l}, has not been found.")
unset(_BOOST_MATH_C99L_DEPS)
return()
endif()
endforeach()
unset(_BOOST_MATH_C99L_DEPS)

View File

@@ -0,0 +1,72 @@
# Generated by Boost 1.70.0
# address-model=64
if(CMAKE_SIZEOF_VOID_P EQUAL 4)
_BOOST_SKIPPED("boost_math_c99l-vc142-mt-gd-x64-1_70.lib" "64 bit, need 32")
return()
endif()
# layout=versioned
# toolset=vc142
if(Boost_COMPILER AND NOT Boost_COMPILER STREQUAL "vc142")
_BOOST_SKIPPED("boost_math_c99l-vc142-mt-gd-x64-1_70.lib" "vc142, Boost_COMPILER=${Boost_COMPILER}")
return()
endif()
if(BOOST_DETECTED_TOOLSET AND NOT BOOST_DETECTED_TOOLSET STREQUAL "vc142")
_BOOST_SKIPPED("boost_math_c99l-vc142-mt-gd-x64-1_70.lib" "vc142, detected ${BOOST_DETECTED_TOOLSET}, set Boost_COMPILER to override")
return()
endif()
# link=shared
if(NOT "${Boost_USE_STATIC_LIBS}" STREQUAL "" AND Boost_USE_STATIC_LIBS)
_BOOST_SKIPPED("boost_math_c99l-vc142-mt-gd-x64-1_70.lib" "shared, Boost_USE_STATIC_LIBS=${Boost_USE_STATIC_LIBS}")
return()
endif()
if(NOT BUILD_SHARED_LIBS)
_BOOST_SKIPPED("boost_math_c99l-vc142-mt-gd-x64-1_70.lib" "shared, BUILD_SHARED_LIBS not ON, set Boost_USE_STATIC_LIBS=OFF to override")
return()
endif()
# runtime-link=shared
if(Boost_USE_STATIC_RUNTIME)
_BOOST_SKIPPED("boost_math_c99l-vc142-mt-gd-x64-1_70.lib" "shared runtime, Boost_USE_STATIC_RUNTIME=${Boost_USE_STATIC_RUNTIME}")
return()
endif()
# runtime-debugging=on
if(NOT "${Boost_USE_DEBUG_RUNTIME}" STREQUAL "" AND NOT Boost_USE_DEBUG_RUNTIME)
_BOOST_SKIPPED("boost_math_c99l-vc142-mt-gd-x64-1_70.lib" "debug runtime, Boost_USE_DEBUG_RUNTIME=${Boost_USE_DEBUG_RUNTIME}")
return()
endif()
# threading=multi
# variant=debug
if(NOT "${Boost_USE_DEBUG_LIBS}" STREQUAL "" AND NOT Boost_USE_DEBUG_LIBS)
_BOOST_SKIPPED("boost_math_c99l-vc142-mt-gd-x64-1_70.lib" "debug, Boost_USE_DEBUG_LIBS=${Boost_USE_DEBUG_LIBS}")
return()
endif()
message(STATUS " boost_math_c99l-vc142-mt-gd-x64-1_70.lib")
# Target file name: boost_math_c99l-vc142-mt-gd-x64-1_70.lib
set_property(TARGET Boost::math_c99l APPEND PROPERTY IMPORTED_CONFIGURATIONS DEBUG)
set_target_properties(Boost::math_c99l PROPERTIES
IMPORTED_LINK_INTERFACE_LANGUAGES_DEBUG CXX
IMPORTED_LOCATION_DEBUG "${_BOOST_LIBDIR}/boost_math_c99l-vc142-mt-gd-x64-1_70.lib"
)
set_target_properties(Boost::math_c99l PROPERTIES
INTERFACE_COMPILE_DEFINITIONS "BOOST_MATH_C99L_DYN_LINK"
)
list(APPEND _BOOST_MATH_C99L_DEPS headers)

View File

@@ -0,0 +1,72 @@
# Generated by Boost 1.70.0
# address-model=64
if(CMAKE_SIZEOF_VOID_P EQUAL 4)
_BOOST_SKIPPED("boost_math_c99l-vc142-mt-x64-1_70.lib" "64 bit, need 32")
return()
endif()
# layout=versioned
# toolset=vc142
if(Boost_COMPILER AND NOT Boost_COMPILER STREQUAL "vc142")
_BOOST_SKIPPED("boost_math_c99l-vc142-mt-x64-1_70.lib" "vc142, Boost_COMPILER=${Boost_COMPILER}")
return()
endif()
if(BOOST_DETECTED_TOOLSET AND NOT BOOST_DETECTED_TOOLSET STREQUAL "vc142")
_BOOST_SKIPPED("boost_math_c99l-vc142-mt-x64-1_70.lib" "vc142, detected ${BOOST_DETECTED_TOOLSET}, set Boost_COMPILER to override")
return()
endif()
# link=shared
if(NOT "${Boost_USE_STATIC_LIBS}" STREQUAL "" AND Boost_USE_STATIC_LIBS)
_BOOST_SKIPPED("boost_math_c99l-vc142-mt-x64-1_70.lib" "shared, Boost_USE_STATIC_LIBS=${Boost_USE_STATIC_LIBS}")
return()
endif()
if(NOT BUILD_SHARED_LIBS)
_BOOST_SKIPPED("boost_math_c99l-vc142-mt-x64-1_70.lib" "shared, BUILD_SHARED_LIBS not ON, set Boost_USE_STATIC_LIBS=OFF to override")
return()
endif()
# runtime-link=shared
if(Boost_USE_STATIC_RUNTIME)
_BOOST_SKIPPED("boost_math_c99l-vc142-mt-x64-1_70.lib" "shared runtime, Boost_USE_STATIC_RUNTIME=${Boost_USE_STATIC_RUNTIME}")
return()
endif()
# runtime-debugging=off
if(Boost_USE_DEBUG_RUNTIME)
_BOOST_SKIPPED("boost_math_c99l-vc142-mt-x64-1_70.lib" "release runtime, Boost_USE_DEBUG_RUNTIME=${Boost_USE_DEBUG_RUNTIME}")
return()
endif()
# threading=multi
# variant=release
if(NOT "${Boost_USE_RELEASE_LIBS}" STREQUAL "" AND NOT Boost_USE_RELEASE_LIBS)
_BOOST_SKIPPED("boost_math_c99l-vc142-mt-x64-1_70.lib" "release, Boost_USE_RELEASE_LIBS=${Boost_USE_RELEASE_LIBS}")
return()
endif()
message(STATUS " boost_math_c99l-vc142-mt-x64-1_70.lib")
# Target file name: boost_math_c99l-vc142-mt-x64-1_70.lib
set_property(TARGET Boost::math_c99l APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE)
set_target_properties(Boost::math_c99l PROPERTIES
IMPORTED_LINK_INTERFACE_LANGUAGES_RELEASE CXX
IMPORTED_LOCATION_RELEASE "${_BOOST_LIBDIR}/boost_math_c99l-vc142-mt-x64-1_70.lib"
)
set_target_properties(Boost::math_c99l PROPERTIES
INTERFACE_COMPILE_DEFINITIONS "BOOST_MATH_C99L_DYN_LINK"
)
list(APPEND _BOOST_MATH_C99L_DEPS headers)

View File

@@ -0,0 +1,12 @@
# Generated by Boost 1.70.0
set(PACKAGE_VERSION 1.70.0)
if(PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION)
set(PACKAGE_VERSION_COMPATIBLE FALSE)
else()
set(PACKAGE_VERSION_COMPATIBLE TRUE)
if(PACKAGE_FIND_VERSION STREQUAL PACKAGE_VERSION)
set(PACKAGE_VERSION_EXACT TRUE)
endif()
endif()

View File

@@ -0,0 +1,98 @@
# Generated by Boost 1.70.0
if(TARGET Boost::math_tr1)
return()
endif()
message(STATUS "Found boost_math_tr1 ${boost_math_tr1_VERSION} at ${boost_math_tr1_DIR}")
# Compute the include and library directories relative to this file.
get_filename_component(_BOOST_CMAKEDIR "${CMAKE_CURRENT_LIST_DIR}/../" ABSOLUTE)
get_filename_component(_BOOST_INCLUDEDIR "${_BOOST_CMAKEDIR}/../../include/boost-1_70/" ABSOLUTE)
get_filename_component(_BOOST_LIBDIR "${_BOOST_CMAKEDIR}/../" ABSOLUTE)
# Create imported target Boost::math_tr1
add_library(Boost::math_tr1 UNKNOWN IMPORTED)
set_target_properties(Boost::math_tr1 PROPERTIES
INTERFACE_INCLUDE_DIRECTORIES "${_BOOST_INCLUDEDIR}"
INTERFACE_COMPILE_DEFINITIONS "BOOST_ALL_NO_LIB"
)
include(${CMAKE_CURRENT_LIST_DIR}/../BoostDetectToolset-1.70.0.cmake)
if(Boost_DEBUG)
message(STATUS "Scanning ${CMAKE_CURRENT_LIST_DIR}/libboost_math_tr1-variant*.cmake")
endif()
file(GLOB __boost_variants "${CMAKE_CURRENT_LIST_DIR}/libboost_math_tr1-variant*.cmake")
macro(_BOOST_SKIPPED fname reason)
if(Boost_DEBUG)
message(STATUS " ... skipped ${fname} (${reason})")
endif()
list(APPEND __boost_skipped "${fname} (${reason})")
endmacro()
foreach(f IN LISTS __boost_variants)
if(Boost_DEBUG)
message(STATUS " Including ${f}")
endif()
include(${f})
endforeach()
unset(_BOOST_LIBDIR)
unset(_BOOST_INCLUDEDIR)
unset(_BOOST_CMAKEDIR)
get_target_property(__boost_configs Boost::math_tr1 IMPORTED_CONFIGURATIONS)
if(__boost_variants AND NOT __boost_configs)
message(STATUS "No suitable boost_math_tr1 variant has been identified!")
if(NOT Boost_DEBUG)
foreach(s IN LISTS __boost_skipped)
message(STATUS " ${s}")
endforeach()
endif()
set(boost_math_tr1_FOUND 0)
set(boost_math_tr1_NOT_FOUND_MESSAGE "No suitable build variant has been found.")
unset(__boost_skipped)
unset(__boost_configs)
unset(__boost_variants)
unset(_BOOST_MATH_TR1_DEPS)
return()
endif()
unset(__boost_skipped)
unset(__boost_configs)
unset(__boost_variants)
if(_BOOST_MATH_TR1_DEPS)
list(REMOVE_DUPLICATES _BOOST_MATH_TR1_DEPS)
message(STATUS "Adding boost_math_tr1 dependencies: ${_BOOST_MATH_TR1_DEPS}")
endif()
foreach(dep_boost_math_tr1 IN LISTS _BOOST_MATH_TR1_DEPS)
set(_BOOST_QUIET)
if(boost_math_tr1_FIND_QUIETLY)
set(_BOOST_QUIET QUIET)
endif()
set(_BOOST_REQUIRED)
if(boost_math_tr1_FIND_REQUIRED)
set(_BOOST_REQUIRED REQUIRED)
endif()
get_filename_component(_BOOST_CMAKEDIR "${CMAKE_CURRENT_LIST_DIR}/../" ABSOLUTE)
find_package(boost_${dep_boost_math_tr1} 1.70.0 EXACT CONFIG ${_BOOST_REQUIRED} ${_BOOST_QUIET} HINTS ${_BOOST_CMAKEDIR})
set_property(TARGET Boost::math_tr1 APPEND PROPERTY INTERFACE_LINK_LIBRARIES Boost::${dep_boost_math_tr1})
unset(_BOOST_QUIET)
unset(_BOOST_REQUIRED)
unset(_BOOST_CMAKEDIR)
if(NOT boost_${dep_boost_math_tr1}_FOUND)
set(boost_math_tr1_FOUND 0)
set(boost_math_tr1_NOT_FOUND_MESSAGE "A required dependency, boost_${dep_boost_math_tr1}, has not been found.")
unset(_BOOST_MATH_TR1_DEPS)
return()
endif()
endforeach()
unset(_BOOST_MATH_TR1_DEPS)

View File

@@ -0,0 +1,72 @@
# Generated by Boost 1.70.0
# address-model=64
if(CMAKE_SIZEOF_VOID_P EQUAL 4)
_BOOST_SKIPPED("boost_math_tr1-vc142-mt-gd-x64-1_70.lib" "64 bit, need 32")
return()
endif()
# layout=versioned
# toolset=vc142
if(Boost_COMPILER AND NOT Boost_COMPILER STREQUAL "vc142")
_BOOST_SKIPPED("boost_math_tr1-vc142-mt-gd-x64-1_70.lib" "vc142, Boost_COMPILER=${Boost_COMPILER}")
return()
endif()
if(BOOST_DETECTED_TOOLSET AND NOT BOOST_DETECTED_TOOLSET STREQUAL "vc142")
_BOOST_SKIPPED("boost_math_tr1-vc142-mt-gd-x64-1_70.lib" "vc142, detected ${BOOST_DETECTED_TOOLSET}, set Boost_COMPILER to override")
return()
endif()
# link=shared
if(NOT "${Boost_USE_STATIC_LIBS}" STREQUAL "" AND Boost_USE_STATIC_LIBS)
_BOOST_SKIPPED("boost_math_tr1-vc142-mt-gd-x64-1_70.lib" "shared, Boost_USE_STATIC_LIBS=${Boost_USE_STATIC_LIBS}")
return()
endif()
if(NOT BUILD_SHARED_LIBS)
_BOOST_SKIPPED("boost_math_tr1-vc142-mt-gd-x64-1_70.lib" "shared, BUILD_SHARED_LIBS not ON, set Boost_USE_STATIC_LIBS=OFF to override")
return()
endif()
# runtime-link=shared
if(Boost_USE_STATIC_RUNTIME)
_BOOST_SKIPPED("boost_math_tr1-vc142-mt-gd-x64-1_70.lib" "shared runtime, Boost_USE_STATIC_RUNTIME=${Boost_USE_STATIC_RUNTIME}")
return()
endif()
# runtime-debugging=on
if(NOT "${Boost_USE_DEBUG_RUNTIME}" STREQUAL "" AND NOT Boost_USE_DEBUG_RUNTIME)
_BOOST_SKIPPED("boost_math_tr1-vc142-mt-gd-x64-1_70.lib" "debug runtime, Boost_USE_DEBUG_RUNTIME=${Boost_USE_DEBUG_RUNTIME}")
return()
endif()
# threading=multi
# variant=debug
if(NOT "${Boost_USE_DEBUG_LIBS}" STREQUAL "" AND NOT Boost_USE_DEBUG_LIBS)
_BOOST_SKIPPED("boost_math_tr1-vc142-mt-gd-x64-1_70.lib" "debug, Boost_USE_DEBUG_LIBS=${Boost_USE_DEBUG_LIBS}")
return()
endif()
message(STATUS " boost_math_tr1-vc142-mt-gd-x64-1_70.lib")
# Target file name: boost_math_tr1-vc142-mt-gd-x64-1_70.lib
set_property(TARGET Boost::math_tr1 APPEND PROPERTY IMPORTED_CONFIGURATIONS DEBUG)
set_target_properties(Boost::math_tr1 PROPERTIES
IMPORTED_LINK_INTERFACE_LANGUAGES_DEBUG CXX
IMPORTED_LOCATION_DEBUG "${_BOOST_LIBDIR}/boost_math_tr1-vc142-mt-gd-x64-1_70.lib"
)
set_target_properties(Boost::math_tr1 PROPERTIES
INTERFACE_COMPILE_DEFINITIONS "BOOST_MATH_TR1_DYN_LINK"
)
list(APPEND _BOOST_MATH_TR1_DEPS headers)

View File

@@ -0,0 +1,72 @@
# Generated by Boost 1.70.0
# address-model=64
if(CMAKE_SIZEOF_VOID_P EQUAL 4)
_BOOST_SKIPPED("boost_math_tr1-vc142-mt-x64-1_70.lib" "64 bit, need 32")
return()
endif()
# layout=versioned
# toolset=vc142
if(Boost_COMPILER AND NOT Boost_COMPILER STREQUAL "vc142")
_BOOST_SKIPPED("boost_math_tr1-vc142-mt-x64-1_70.lib" "vc142, Boost_COMPILER=${Boost_COMPILER}")
return()
endif()
if(BOOST_DETECTED_TOOLSET AND NOT BOOST_DETECTED_TOOLSET STREQUAL "vc142")
_BOOST_SKIPPED("boost_math_tr1-vc142-mt-x64-1_70.lib" "vc142, detected ${BOOST_DETECTED_TOOLSET}, set Boost_COMPILER to override")
return()
endif()
# link=shared
if(NOT "${Boost_USE_STATIC_LIBS}" STREQUAL "" AND Boost_USE_STATIC_LIBS)
_BOOST_SKIPPED("boost_math_tr1-vc142-mt-x64-1_70.lib" "shared, Boost_USE_STATIC_LIBS=${Boost_USE_STATIC_LIBS}")
return()
endif()
if(NOT BUILD_SHARED_LIBS)
_BOOST_SKIPPED("boost_math_tr1-vc142-mt-x64-1_70.lib" "shared, BUILD_SHARED_LIBS not ON, set Boost_USE_STATIC_LIBS=OFF to override")
return()
endif()
# runtime-link=shared
if(Boost_USE_STATIC_RUNTIME)
_BOOST_SKIPPED("boost_math_tr1-vc142-mt-x64-1_70.lib" "shared runtime, Boost_USE_STATIC_RUNTIME=${Boost_USE_STATIC_RUNTIME}")
return()
endif()
# runtime-debugging=off
if(Boost_USE_DEBUG_RUNTIME)
_BOOST_SKIPPED("boost_math_tr1-vc142-mt-x64-1_70.lib" "release runtime, Boost_USE_DEBUG_RUNTIME=${Boost_USE_DEBUG_RUNTIME}")
return()
endif()
# threading=multi
# variant=release
if(NOT "${Boost_USE_RELEASE_LIBS}" STREQUAL "" AND NOT Boost_USE_RELEASE_LIBS)
_BOOST_SKIPPED("boost_math_tr1-vc142-mt-x64-1_70.lib" "release, Boost_USE_RELEASE_LIBS=${Boost_USE_RELEASE_LIBS}")
return()
endif()
message(STATUS " boost_math_tr1-vc142-mt-x64-1_70.lib")
# Target file name: boost_math_tr1-vc142-mt-x64-1_70.lib
set_property(TARGET Boost::math_tr1 APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE)
set_target_properties(Boost::math_tr1 PROPERTIES
IMPORTED_LINK_INTERFACE_LANGUAGES_RELEASE CXX
IMPORTED_LOCATION_RELEASE "${_BOOST_LIBDIR}/boost_math_tr1-vc142-mt-x64-1_70.lib"
)
set_target_properties(Boost::math_tr1 PROPERTIES
INTERFACE_COMPILE_DEFINITIONS "BOOST_MATH_TR1_DYN_LINK"
)
list(APPEND _BOOST_MATH_TR1_DEPS headers)

View File

@@ -0,0 +1,12 @@
# Generated by Boost 1.70.0
set(PACKAGE_VERSION 1.70.0)
if(PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION)
set(PACKAGE_VERSION_COMPATIBLE FALSE)
else()
set(PACKAGE_VERSION_COMPATIBLE TRUE)
if(PACKAGE_FIND_VERSION STREQUAL PACKAGE_VERSION)
set(PACKAGE_VERSION_EXACT TRUE)
endif()
endif()

View File

@@ -0,0 +1,98 @@
# Generated by Boost 1.70.0
if(TARGET Boost::math_tr1f)
return()
endif()
message(STATUS "Found boost_math_tr1f ${boost_math_tr1f_VERSION} at ${boost_math_tr1f_DIR}")
# Compute the include and library directories relative to this file.
get_filename_component(_BOOST_CMAKEDIR "${CMAKE_CURRENT_LIST_DIR}/../" ABSOLUTE)
get_filename_component(_BOOST_INCLUDEDIR "${_BOOST_CMAKEDIR}/../../include/boost-1_70/" ABSOLUTE)
get_filename_component(_BOOST_LIBDIR "${_BOOST_CMAKEDIR}/../" ABSOLUTE)
# Create imported target Boost::math_tr1f
add_library(Boost::math_tr1f UNKNOWN IMPORTED)
set_target_properties(Boost::math_tr1f PROPERTIES
INTERFACE_INCLUDE_DIRECTORIES "${_BOOST_INCLUDEDIR}"
INTERFACE_COMPILE_DEFINITIONS "BOOST_ALL_NO_LIB"
)
include(${CMAKE_CURRENT_LIST_DIR}/../BoostDetectToolset-1.70.0.cmake)
if(Boost_DEBUG)
message(STATUS "Scanning ${CMAKE_CURRENT_LIST_DIR}/libboost_math_tr1f-variant*.cmake")
endif()
file(GLOB __boost_variants "${CMAKE_CURRENT_LIST_DIR}/libboost_math_tr1f-variant*.cmake")
macro(_BOOST_SKIPPED fname reason)
if(Boost_DEBUG)
message(STATUS " ... skipped ${fname} (${reason})")
endif()
list(APPEND __boost_skipped "${fname} (${reason})")
endmacro()
foreach(f IN LISTS __boost_variants)
if(Boost_DEBUG)
message(STATUS " Including ${f}")
endif()
include(${f})
endforeach()
unset(_BOOST_LIBDIR)
unset(_BOOST_INCLUDEDIR)
unset(_BOOST_CMAKEDIR)
get_target_property(__boost_configs Boost::math_tr1f IMPORTED_CONFIGURATIONS)
if(__boost_variants AND NOT __boost_configs)
message(STATUS "No suitable boost_math_tr1f variant has been identified!")
if(NOT Boost_DEBUG)
foreach(s IN LISTS __boost_skipped)
message(STATUS " ${s}")
endforeach()
endif()
set(boost_math_tr1f_FOUND 0)
set(boost_math_tr1f_NOT_FOUND_MESSAGE "No suitable build variant has been found.")
unset(__boost_skipped)
unset(__boost_configs)
unset(__boost_variants)
unset(_BOOST_MATH_TR1F_DEPS)
return()
endif()
unset(__boost_skipped)
unset(__boost_configs)
unset(__boost_variants)
if(_BOOST_MATH_TR1F_DEPS)
list(REMOVE_DUPLICATES _BOOST_MATH_TR1F_DEPS)
message(STATUS "Adding boost_math_tr1f dependencies: ${_BOOST_MATH_TR1F_DEPS}")
endif()
foreach(dep_boost_math_tr1f IN LISTS _BOOST_MATH_TR1F_DEPS)
set(_BOOST_QUIET)
if(boost_math_tr1f_FIND_QUIETLY)
set(_BOOST_QUIET QUIET)
endif()
set(_BOOST_REQUIRED)
if(boost_math_tr1f_FIND_REQUIRED)
set(_BOOST_REQUIRED REQUIRED)
endif()
get_filename_component(_BOOST_CMAKEDIR "${CMAKE_CURRENT_LIST_DIR}/../" ABSOLUTE)
find_package(boost_${dep_boost_math_tr1f} 1.70.0 EXACT CONFIG ${_BOOST_REQUIRED} ${_BOOST_QUIET} HINTS ${_BOOST_CMAKEDIR})
set_property(TARGET Boost::math_tr1f APPEND PROPERTY INTERFACE_LINK_LIBRARIES Boost::${dep_boost_math_tr1f})
unset(_BOOST_QUIET)
unset(_BOOST_REQUIRED)
unset(_BOOST_CMAKEDIR)
if(NOT boost_${dep_boost_math_tr1f}_FOUND)
set(boost_math_tr1f_FOUND 0)
set(boost_math_tr1f_NOT_FOUND_MESSAGE "A required dependency, boost_${dep_boost_math_tr1f}, has not been found.")
unset(_BOOST_MATH_TR1F_DEPS)
return()
endif()
endforeach()
unset(_BOOST_MATH_TR1F_DEPS)

View File

@@ -0,0 +1,72 @@
# Generated by Boost 1.70.0
# address-model=64
if(CMAKE_SIZEOF_VOID_P EQUAL 4)
_BOOST_SKIPPED("boost_math_tr1f-vc142-mt-gd-x64-1_70.lib" "64 bit, need 32")
return()
endif()
# layout=versioned
# toolset=vc142
if(Boost_COMPILER AND NOT Boost_COMPILER STREQUAL "vc142")
_BOOST_SKIPPED("boost_math_tr1f-vc142-mt-gd-x64-1_70.lib" "vc142, Boost_COMPILER=${Boost_COMPILER}")
return()
endif()
if(BOOST_DETECTED_TOOLSET AND NOT BOOST_DETECTED_TOOLSET STREQUAL "vc142")
_BOOST_SKIPPED("boost_math_tr1f-vc142-mt-gd-x64-1_70.lib" "vc142, detected ${BOOST_DETECTED_TOOLSET}, set Boost_COMPILER to override")
return()
endif()
# link=shared
if(NOT "${Boost_USE_STATIC_LIBS}" STREQUAL "" AND Boost_USE_STATIC_LIBS)
_BOOST_SKIPPED("boost_math_tr1f-vc142-mt-gd-x64-1_70.lib" "shared, Boost_USE_STATIC_LIBS=${Boost_USE_STATIC_LIBS}")
return()
endif()
if(NOT BUILD_SHARED_LIBS)
_BOOST_SKIPPED("boost_math_tr1f-vc142-mt-gd-x64-1_70.lib" "shared, BUILD_SHARED_LIBS not ON, set Boost_USE_STATIC_LIBS=OFF to override")
return()
endif()
# runtime-link=shared
if(Boost_USE_STATIC_RUNTIME)
_BOOST_SKIPPED("boost_math_tr1f-vc142-mt-gd-x64-1_70.lib" "shared runtime, Boost_USE_STATIC_RUNTIME=${Boost_USE_STATIC_RUNTIME}")
return()
endif()
# runtime-debugging=on
if(NOT "${Boost_USE_DEBUG_RUNTIME}" STREQUAL "" AND NOT Boost_USE_DEBUG_RUNTIME)
_BOOST_SKIPPED("boost_math_tr1f-vc142-mt-gd-x64-1_70.lib" "debug runtime, Boost_USE_DEBUG_RUNTIME=${Boost_USE_DEBUG_RUNTIME}")
return()
endif()
# threading=multi
# variant=debug
if(NOT "${Boost_USE_DEBUG_LIBS}" STREQUAL "" AND NOT Boost_USE_DEBUG_LIBS)
_BOOST_SKIPPED("boost_math_tr1f-vc142-mt-gd-x64-1_70.lib" "debug, Boost_USE_DEBUG_LIBS=${Boost_USE_DEBUG_LIBS}")
return()
endif()
message(STATUS " boost_math_tr1f-vc142-mt-gd-x64-1_70.lib")
# Target file name: boost_math_tr1f-vc142-mt-gd-x64-1_70.lib
set_property(TARGET Boost::math_tr1f APPEND PROPERTY IMPORTED_CONFIGURATIONS DEBUG)
set_target_properties(Boost::math_tr1f PROPERTIES
IMPORTED_LINK_INTERFACE_LANGUAGES_DEBUG CXX
IMPORTED_LOCATION_DEBUG "${_BOOST_LIBDIR}/boost_math_tr1f-vc142-mt-gd-x64-1_70.lib"
)
set_target_properties(Boost::math_tr1f PROPERTIES
INTERFACE_COMPILE_DEFINITIONS "BOOST_MATH_TR1F_DYN_LINK"
)
list(APPEND _BOOST_MATH_TR1F_DEPS headers)

View File

@@ -0,0 +1,72 @@
# Generated by Boost 1.70.0
# address-model=64
if(CMAKE_SIZEOF_VOID_P EQUAL 4)
_BOOST_SKIPPED("boost_math_tr1f-vc142-mt-x64-1_70.lib" "64 bit, need 32")
return()
endif()
# layout=versioned
# toolset=vc142
if(Boost_COMPILER AND NOT Boost_COMPILER STREQUAL "vc142")
_BOOST_SKIPPED("boost_math_tr1f-vc142-mt-x64-1_70.lib" "vc142, Boost_COMPILER=${Boost_COMPILER}")
return()
endif()
if(BOOST_DETECTED_TOOLSET AND NOT BOOST_DETECTED_TOOLSET STREQUAL "vc142")
_BOOST_SKIPPED("boost_math_tr1f-vc142-mt-x64-1_70.lib" "vc142, detected ${BOOST_DETECTED_TOOLSET}, set Boost_COMPILER to override")
return()
endif()
# link=shared
if(NOT "${Boost_USE_STATIC_LIBS}" STREQUAL "" AND Boost_USE_STATIC_LIBS)
_BOOST_SKIPPED("boost_math_tr1f-vc142-mt-x64-1_70.lib" "shared, Boost_USE_STATIC_LIBS=${Boost_USE_STATIC_LIBS}")
return()
endif()
if(NOT BUILD_SHARED_LIBS)
_BOOST_SKIPPED("boost_math_tr1f-vc142-mt-x64-1_70.lib" "shared, BUILD_SHARED_LIBS not ON, set Boost_USE_STATIC_LIBS=OFF to override")
return()
endif()
# runtime-link=shared
if(Boost_USE_STATIC_RUNTIME)
_BOOST_SKIPPED("boost_math_tr1f-vc142-mt-x64-1_70.lib" "shared runtime, Boost_USE_STATIC_RUNTIME=${Boost_USE_STATIC_RUNTIME}")
return()
endif()
# runtime-debugging=off
if(Boost_USE_DEBUG_RUNTIME)
_BOOST_SKIPPED("boost_math_tr1f-vc142-mt-x64-1_70.lib" "release runtime, Boost_USE_DEBUG_RUNTIME=${Boost_USE_DEBUG_RUNTIME}")
return()
endif()
# threading=multi
# variant=release
if(NOT "${Boost_USE_RELEASE_LIBS}" STREQUAL "" AND NOT Boost_USE_RELEASE_LIBS)
_BOOST_SKIPPED("boost_math_tr1f-vc142-mt-x64-1_70.lib" "release, Boost_USE_RELEASE_LIBS=${Boost_USE_RELEASE_LIBS}")
return()
endif()
message(STATUS " boost_math_tr1f-vc142-mt-x64-1_70.lib")
# Target file name: boost_math_tr1f-vc142-mt-x64-1_70.lib
set_property(TARGET Boost::math_tr1f APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE)
set_target_properties(Boost::math_tr1f PROPERTIES
IMPORTED_LINK_INTERFACE_LANGUAGES_RELEASE CXX
IMPORTED_LOCATION_RELEASE "${_BOOST_LIBDIR}/boost_math_tr1f-vc142-mt-x64-1_70.lib"
)
set_target_properties(Boost::math_tr1f PROPERTIES
INTERFACE_COMPILE_DEFINITIONS "BOOST_MATH_TR1F_DYN_LINK"
)
list(APPEND _BOOST_MATH_TR1F_DEPS headers)

View File

@@ -0,0 +1,12 @@
# Generated by Boost 1.70.0
set(PACKAGE_VERSION 1.70.0)
if(PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION)
set(PACKAGE_VERSION_COMPATIBLE FALSE)
else()
set(PACKAGE_VERSION_COMPATIBLE TRUE)
if(PACKAGE_FIND_VERSION STREQUAL PACKAGE_VERSION)
set(PACKAGE_VERSION_EXACT TRUE)
endif()
endif()

View File

@@ -0,0 +1,98 @@
# Generated by Boost 1.70.0
if(TARGET Boost::math_tr1l)
return()
endif()
message(STATUS "Found boost_math_tr1l ${boost_math_tr1l_VERSION} at ${boost_math_tr1l_DIR}")
# Compute the include and library directories relative to this file.
get_filename_component(_BOOST_CMAKEDIR "${CMAKE_CURRENT_LIST_DIR}/../" ABSOLUTE)
get_filename_component(_BOOST_INCLUDEDIR "${_BOOST_CMAKEDIR}/../../include/boost-1_70/" ABSOLUTE)
get_filename_component(_BOOST_LIBDIR "${_BOOST_CMAKEDIR}/../" ABSOLUTE)
# Create imported target Boost::math_tr1l
add_library(Boost::math_tr1l UNKNOWN IMPORTED)
set_target_properties(Boost::math_tr1l PROPERTIES
INTERFACE_INCLUDE_DIRECTORIES "${_BOOST_INCLUDEDIR}"
INTERFACE_COMPILE_DEFINITIONS "BOOST_ALL_NO_LIB"
)
include(${CMAKE_CURRENT_LIST_DIR}/../BoostDetectToolset-1.70.0.cmake)
if(Boost_DEBUG)
message(STATUS "Scanning ${CMAKE_CURRENT_LIST_DIR}/libboost_math_tr1l-variant*.cmake")
endif()
file(GLOB __boost_variants "${CMAKE_CURRENT_LIST_DIR}/libboost_math_tr1l-variant*.cmake")
macro(_BOOST_SKIPPED fname reason)
if(Boost_DEBUG)
message(STATUS " ... skipped ${fname} (${reason})")
endif()
list(APPEND __boost_skipped "${fname} (${reason})")
endmacro()
foreach(f IN LISTS __boost_variants)
if(Boost_DEBUG)
message(STATUS " Including ${f}")
endif()
include(${f})
endforeach()
unset(_BOOST_LIBDIR)
unset(_BOOST_INCLUDEDIR)
unset(_BOOST_CMAKEDIR)
get_target_property(__boost_configs Boost::math_tr1l IMPORTED_CONFIGURATIONS)
if(__boost_variants AND NOT __boost_configs)
message(STATUS "No suitable boost_math_tr1l variant has been identified!")
if(NOT Boost_DEBUG)
foreach(s IN LISTS __boost_skipped)
message(STATUS " ${s}")
endforeach()
endif()
set(boost_math_tr1l_FOUND 0)
set(boost_math_tr1l_NOT_FOUND_MESSAGE "No suitable build variant has been found.")
unset(__boost_skipped)
unset(__boost_configs)
unset(__boost_variants)
unset(_BOOST_MATH_TR1L_DEPS)
return()
endif()
unset(__boost_skipped)
unset(__boost_configs)
unset(__boost_variants)
if(_BOOST_MATH_TR1L_DEPS)
list(REMOVE_DUPLICATES _BOOST_MATH_TR1L_DEPS)
message(STATUS "Adding boost_math_tr1l dependencies: ${_BOOST_MATH_TR1L_DEPS}")
endif()
foreach(dep_boost_math_tr1l IN LISTS _BOOST_MATH_TR1L_DEPS)
set(_BOOST_QUIET)
if(boost_math_tr1l_FIND_QUIETLY)
set(_BOOST_QUIET QUIET)
endif()
set(_BOOST_REQUIRED)
if(boost_math_tr1l_FIND_REQUIRED)
set(_BOOST_REQUIRED REQUIRED)
endif()
get_filename_component(_BOOST_CMAKEDIR "${CMAKE_CURRENT_LIST_DIR}/../" ABSOLUTE)
find_package(boost_${dep_boost_math_tr1l} 1.70.0 EXACT CONFIG ${_BOOST_REQUIRED} ${_BOOST_QUIET} HINTS ${_BOOST_CMAKEDIR})
set_property(TARGET Boost::math_tr1l APPEND PROPERTY INTERFACE_LINK_LIBRARIES Boost::${dep_boost_math_tr1l})
unset(_BOOST_QUIET)
unset(_BOOST_REQUIRED)
unset(_BOOST_CMAKEDIR)
if(NOT boost_${dep_boost_math_tr1l}_FOUND)
set(boost_math_tr1l_FOUND 0)
set(boost_math_tr1l_NOT_FOUND_MESSAGE "A required dependency, boost_${dep_boost_math_tr1l}, has not been found.")
unset(_BOOST_MATH_TR1L_DEPS)
return()
endif()
endforeach()
unset(_BOOST_MATH_TR1L_DEPS)

View File

@@ -0,0 +1,72 @@
# Generated by Boost 1.70.0
# address-model=64
if(CMAKE_SIZEOF_VOID_P EQUAL 4)
_BOOST_SKIPPED("boost_math_tr1l-vc142-mt-gd-x64-1_70.lib" "64 bit, need 32")
return()
endif()
# layout=versioned
# toolset=vc142
if(Boost_COMPILER AND NOT Boost_COMPILER STREQUAL "vc142")
_BOOST_SKIPPED("boost_math_tr1l-vc142-mt-gd-x64-1_70.lib" "vc142, Boost_COMPILER=${Boost_COMPILER}")
return()
endif()
if(BOOST_DETECTED_TOOLSET AND NOT BOOST_DETECTED_TOOLSET STREQUAL "vc142")
_BOOST_SKIPPED("boost_math_tr1l-vc142-mt-gd-x64-1_70.lib" "vc142, detected ${BOOST_DETECTED_TOOLSET}, set Boost_COMPILER to override")
return()
endif()
# link=shared
if(NOT "${Boost_USE_STATIC_LIBS}" STREQUAL "" AND Boost_USE_STATIC_LIBS)
_BOOST_SKIPPED("boost_math_tr1l-vc142-mt-gd-x64-1_70.lib" "shared, Boost_USE_STATIC_LIBS=${Boost_USE_STATIC_LIBS}")
return()
endif()
if(NOT BUILD_SHARED_LIBS)
_BOOST_SKIPPED("boost_math_tr1l-vc142-mt-gd-x64-1_70.lib" "shared, BUILD_SHARED_LIBS not ON, set Boost_USE_STATIC_LIBS=OFF to override")
return()
endif()
# runtime-link=shared
if(Boost_USE_STATIC_RUNTIME)
_BOOST_SKIPPED("boost_math_tr1l-vc142-mt-gd-x64-1_70.lib" "shared runtime, Boost_USE_STATIC_RUNTIME=${Boost_USE_STATIC_RUNTIME}")
return()
endif()
# runtime-debugging=on
if(NOT "${Boost_USE_DEBUG_RUNTIME}" STREQUAL "" AND NOT Boost_USE_DEBUG_RUNTIME)
_BOOST_SKIPPED("boost_math_tr1l-vc142-mt-gd-x64-1_70.lib" "debug runtime, Boost_USE_DEBUG_RUNTIME=${Boost_USE_DEBUG_RUNTIME}")
return()
endif()
# threading=multi
# variant=debug
if(NOT "${Boost_USE_DEBUG_LIBS}" STREQUAL "" AND NOT Boost_USE_DEBUG_LIBS)
_BOOST_SKIPPED("boost_math_tr1l-vc142-mt-gd-x64-1_70.lib" "debug, Boost_USE_DEBUG_LIBS=${Boost_USE_DEBUG_LIBS}")
return()
endif()
message(STATUS " boost_math_tr1l-vc142-mt-gd-x64-1_70.lib")
# Target file name: boost_math_tr1l-vc142-mt-gd-x64-1_70.lib
set_property(TARGET Boost::math_tr1l APPEND PROPERTY IMPORTED_CONFIGURATIONS DEBUG)
set_target_properties(Boost::math_tr1l PROPERTIES
IMPORTED_LINK_INTERFACE_LANGUAGES_DEBUG CXX
IMPORTED_LOCATION_DEBUG "${_BOOST_LIBDIR}/boost_math_tr1l-vc142-mt-gd-x64-1_70.lib"
)
set_target_properties(Boost::math_tr1l PROPERTIES
INTERFACE_COMPILE_DEFINITIONS "BOOST_MATH_TR1L_DYN_LINK"
)
list(APPEND _BOOST_MATH_TR1L_DEPS headers)

View File

@@ -0,0 +1,72 @@
# Generated by Boost 1.70.0
# address-model=64
if(CMAKE_SIZEOF_VOID_P EQUAL 4)
_BOOST_SKIPPED("boost_math_tr1l-vc142-mt-x64-1_70.lib" "64 bit, need 32")
return()
endif()
# layout=versioned
# toolset=vc142
if(Boost_COMPILER AND NOT Boost_COMPILER STREQUAL "vc142")
_BOOST_SKIPPED("boost_math_tr1l-vc142-mt-x64-1_70.lib" "vc142, Boost_COMPILER=${Boost_COMPILER}")
return()
endif()
if(BOOST_DETECTED_TOOLSET AND NOT BOOST_DETECTED_TOOLSET STREQUAL "vc142")
_BOOST_SKIPPED("boost_math_tr1l-vc142-mt-x64-1_70.lib" "vc142, detected ${BOOST_DETECTED_TOOLSET}, set Boost_COMPILER to override")
return()
endif()
# link=shared
if(NOT "${Boost_USE_STATIC_LIBS}" STREQUAL "" AND Boost_USE_STATIC_LIBS)
_BOOST_SKIPPED("boost_math_tr1l-vc142-mt-x64-1_70.lib" "shared, Boost_USE_STATIC_LIBS=${Boost_USE_STATIC_LIBS}")
return()
endif()
if(NOT BUILD_SHARED_LIBS)
_BOOST_SKIPPED("boost_math_tr1l-vc142-mt-x64-1_70.lib" "shared, BUILD_SHARED_LIBS not ON, set Boost_USE_STATIC_LIBS=OFF to override")
return()
endif()
# runtime-link=shared
if(Boost_USE_STATIC_RUNTIME)
_BOOST_SKIPPED("boost_math_tr1l-vc142-mt-x64-1_70.lib" "shared runtime, Boost_USE_STATIC_RUNTIME=${Boost_USE_STATIC_RUNTIME}")
return()
endif()
# runtime-debugging=off
if(Boost_USE_DEBUG_RUNTIME)
_BOOST_SKIPPED("boost_math_tr1l-vc142-mt-x64-1_70.lib" "release runtime, Boost_USE_DEBUG_RUNTIME=${Boost_USE_DEBUG_RUNTIME}")
return()
endif()
# threading=multi
# variant=release
if(NOT "${Boost_USE_RELEASE_LIBS}" STREQUAL "" AND NOT Boost_USE_RELEASE_LIBS)
_BOOST_SKIPPED("boost_math_tr1l-vc142-mt-x64-1_70.lib" "release, Boost_USE_RELEASE_LIBS=${Boost_USE_RELEASE_LIBS}")
return()
endif()
message(STATUS " boost_math_tr1l-vc142-mt-x64-1_70.lib")
# Target file name: boost_math_tr1l-vc142-mt-x64-1_70.lib
set_property(TARGET Boost::math_tr1l APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE)
set_target_properties(Boost::math_tr1l PROPERTIES
IMPORTED_LINK_INTERFACE_LANGUAGES_RELEASE CXX
IMPORTED_LOCATION_RELEASE "${_BOOST_LIBDIR}/boost_math_tr1l-vc142-mt-x64-1_70.lib"
)
set_target_properties(Boost::math_tr1l PROPERTIES
INTERFACE_COMPILE_DEFINITIONS "BOOST_MATH_TR1L_DYN_LINK"
)
list(APPEND _BOOST_MATH_TR1L_DEPS headers)

View File

@@ -0,0 +1,12 @@
# Generated by Boost 1.70.0
set(PACKAGE_VERSION 1.70.0)
if(PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION)
set(PACKAGE_VERSION_COMPATIBLE FALSE)
else()
set(PACKAGE_VERSION_COMPATIBLE TRUE)
if(PACKAGE_FIND_VERSION STREQUAL PACKAGE_VERSION)
set(PACKAGE_VERSION_EXACT TRUE)
endif()
endif()

View File

@@ -0,0 +1,98 @@
# Generated by Boost 1.70.0
if(TARGET Boost::mpi)
return()
endif()
message(STATUS "Found boost_mpi ${boost_mpi_VERSION} at ${boost_mpi_DIR}")
# Compute the include and library directories relative to this file.
get_filename_component(_BOOST_CMAKEDIR "${CMAKE_CURRENT_LIST_DIR}/../" ABSOLUTE)
get_filename_component(_BOOST_INCLUDEDIR "${_BOOST_CMAKEDIR}/../../include/boost-1_70/" ABSOLUTE)
get_filename_component(_BOOST_LIBDIR "${_BOOST_CMAKEDIR}/../" ABSOLUTE)
# Create imported target Boost::mpi
add_library(Boost::mpi UNKNOWN IMPORTED)
set_target_properties(Boost::mpi PROPERTIES
INTERFACE_INCLUDE_DIRECTORIES "${_BOOST_INCLUDEDIR}"
INTERFACE_COMPILE_DEFINITIONS "BOOST_ALL_NO_LIB"
)
include(${CMAKE_CURRENT_LIST_DIR}/../BoostDetectToolset-1.70.0.cmake)
if(Boost_DEBUG)
message(STATUS "Scanning ${CMAKE_CURRENT_LIST_DIR}/libboost_mpi-variant*.cmake")
endif()
file(GLOB __boost_variants "${CMAKE_CURRENT_LIST_DIR}/libboost_mpi-variant*.cmake")
macro(_BOOST_SKIPPED fname reason)
if(Boost_DEBUG)
message(STATUS " ... skipped ${fname} (${reason})")
endif()
list(APPEND __boost_skipped "${fname} (${reason})")
endmacro()
foreach(f IN LISTS __boost_variants)
if(Boost_DEBUG)
message(STATUS " Including ${f}")
endif()
include(${f})
endforeach()
unset(_BOOST_LIBDIR)
unset(_BOOST_INCLUDEDIR)
unset(_BOOST_CMAKEDIR)
get_target_property(__boost_configs Boost::mpi IMPORTED_CONFIGURATIONS)
if(__boost_variants AND NOT __boost_configs)
message(STATUS "No suitable boost_mpi variant has been identified!")
if(NOT Boost_DEBUG)
foreach(s IN LISTS __boost_skipped)
message(STATUS " ${s}")
endforeach()
endif()
set(boost_mpi_FOUND 0)
set(boost_mpi_NOT_FOUND_MESSAGE "No suitable build variant has been found.")
unset(__boost_skipped)
unset(__boost_configs)
unset(__boost_variants)
unset(_BOOST_MPI_DEPS)
return()
endif()
unset(__boost_skipped)
unset(__boost_configs)
unset(__boost_variants)
if(_BOOST_MPI_DEPS)
list(REMOVE_DUPLICATES _BOOST_MPI_DEPS)
message(STATUS "Adding boost_mpi dependencies: ${_BOOST_MPI_DEPS}")
endif()
foreach(dep_boost_mpi IN LISTS _BOOST_MPI_DEPS)
set(_BOOST_QUIET)
if(boost_mpi_FIND_QUIETLY)
set(_BOOST_QUIET QUIET)
endif()
set(_BOOST_REQUIRED)
if(boost_mpi_FIND_REQUIRED)
set(_BOOST_REQUIRED REQUIRED)
endif()
get_filename_component(_BOOST_CMAKEDIR "${CMAKE_CURRENT_LIST_DIR}/../" ABSOLUTE)
find_package(boost_${dep_boost_mpi} 1.70.0 EXACT CONFIG ${_BOOST_REQUIRED} ${_BOOST_QUIET} HINTS ${_BOOST_CMAKEDIR})
set_property(TARGET Boost::mpi APPEND PROPERTY INTERFACE_LINK_LIBRARIES Boost::${dep_boost_mpi})
unset(_BOOST_QUIET)
unset(_BOOST_REQUIRED)
unset(_BOOST_CMAKEDIR)
if(NOT boost_${dep_boost_mpi}_FOUND)
set(boost_mpi_FOUND 0)
set(boost_mpi_NOT_FOUND_MESSAGE "A required dependency, boost_${dep_boost_mpi}, has not been found.")
unset(_BOOST_MPI_DEPS)
return()
endif()
endforeach()
unset(_BOOST_MPI_DEPS)

View File

@@ -0,0 +1,61 @@
# Generated by Boost 1.70.0
# address-model=64
if(CMAKE_SIZEOF_VOID_P EQUAL 4)
return()
endif()
# layout=versioned
# toolset=vc142
if(Boost_COMPILER AND NOT Boost_COMPILER STREQUAL "vc142")
return()
endif()
if(BOOST_DETECTED_TOOLSET AND NOT BOOST_DETECTED_TOOLSET STREQUAL "vc142")
return()
endif()
# link=shared
if(NOT "${Boost_USE_STATIC_LIBS}" STREQUAL "" AND Boost_USE_STATIC_LIBS)
return()
endif()
if(NOT BUILD_SHARED_LIBS)
return()
endif()
# runtime-link=shared
if(Boost_USE_STATIC_RUNTIME)
return()
endif()
# runtime-debugging=on
if(NOT "${Boost_USE_DEBUG_RUNTIME}" STREQUAL "" AND NOT Boost_USE_DEBUG_RUNTIME)
return()
endif()
# threading=multi
# variant=debug
if(NOT "${Boost_USE_DEBUG_LIBS}" STREQUAL "" AND NOT Boost_USE_DEBUG_LIBS)
return()
endif()
set_property(TARGET Boost::mpi APPEND PROPERTY IMPORTED_CONFIGURATIONS DEBUG)
set_target_properties(Boost::mpi PROPERTIES
IMPORTED_LINK_INTERFACE_LANGUAGES_DEBUG CXX
)
set_target_properties(Boost::mpi PROPERTIES
INTERFACE_COMPILE_DEFINITIONS "BOOST_MPI_DYN_LINK"
)
list(APPEND _BOOST_MPI_DEPS headers)

Some files were not shown because too many files have changed in this diff Show More