mirror of
https://github.com/boostorg/nowide.git
synced 2026-01-19 04:22:12 +00:00
B2 doesn't build on some newer compilers anymore so we can't properly test it. As 1.66 is "old enough" by now just use that.
17 lines
376 B
CMake
17 lines
376 B
CMake
@PACKAGE_INIT@
|
|
|
|
set(_boost_nowide_superproject "@BOOST_SUPERPROJECT_SOURCE_DIR@")
|
|
|
|
include(CMakeFindDependencyMacro)
|
|
if(_boost_nowide_superproject)
|
|
foreach(dep IN ITEMS boost_config)
|
|
find_dependency(${dep})
|
|
endforeach()
|
|
else()
|
|
find_dependency(Boost 1.66)
|
|
endif()
|
|
|
|
include("${CMAKE_CURRENT_LIST_DIR}/@PROJECT_NAME@Targets.cmake")
|
|
|
|
check_required_components("@PROJECT_NAME@")
|